test1 / Dockerfile
gowah44030's picture
Create Dockerfile
635c591
raw
history blame
121 Bytes
FROM node:18
WORKDIR /code
COPY package.json ./code/package.json
RUN npm install
COPY . .
CMD [ "node", "index.js" ]