This repository has been archived on 2024-04-29. You can view files and clone it, but cannot push or open issues or pull requests.
node-fftcg/backend/Dockerfile

14 lines
198 B
Docker
Raw Normal View History

FROM node:latest as devStage
2018-09-30 18:21:59 +00:00
# some dir for our code
WORKDIR /app
# container port
2018-12-14 21:27:20 +00:00
EXPOSE 3000
2018-09-30 18:21:59 +00:00
# install dependencies
COPY package*.json .
RUN yarn
2018-09-30 18:21:59 +00:00
# this is how we start
CMD ["yarn", "watch"]