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/Dockerfile
2018-12-14 22:27:20 +01:00

16 lines
208 B
Docker

FROM node:latest
# some dir for our code
WORKDIR /app
# container port
EXPOSE 3000
# install dependencies
COPY package*.json .
RUN yarn
# copy code
COPY . .
# this is how we start
CMD ["yarn", "start"]