You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
171 B
Docker
8 lines
171 B
Docker
2 years ago
|
FROM node:16-stretch-slim
|
||
|
RUN mkdir /app
|
||
|
COPY package.json /app
|
||
|
COPY package-lock.json /app
|
||
|
RUN cd /app && npm i
|
||
|
COPY . /app
|
||
|
WORKDIR /app
|
||
|
ENTRYPOINT ["npm","run","start"]
|