mirror of
https://github.com/DOI-DO/j40-cejst-2.git
synced 2025-02-21 09:11:26 -08:00
19 lines
520 B
Docker
19 lines
520 B
Docker
FROM node:14
|
|
|
|
# Set working directory like 'cd' command, any subsequent instructions in this docker file, will start from
|
|
# this working directory
|
|
WORKDIR /client
|
|
|
|
# copy all local files from the working directory to the docker image/container however we must use
|
|
# dockerignore to ignore node_modules so that the image can use what what was just installed from the above
|
|
# step.
|
|
COPY . .
|
|
|
|
# install all packages as a layer in the docker image / container
|
|
RUN npm ci
|
|
|
|
ENV PORT=6000
|
|
|
|
EXPOSE 6000
|
|
|
|
CMD [ "npm", "start"]
|