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"]