salix/front/Dockerfile.local

14 lines
224 B
Docker
Raw Normal View History

FROM salix-back
EXPOSE 5000
COPY /dist dist
COPY /front front
COPY /front/gulpfile.js ./
COPY /front/webpack.config.js ./
RUN cd front && npm install
# RUN npx gulp build
# RUN npx gulp front
CMD ["npx", "gulp", "front"]