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