test1 / Dockerfile
gowah44030's picture
Update Dockerfile
909f7a2
raw
history blame
116 Bytes
FROM node:18
WORKDIR /code
COPY package.json ./package.json
RUN npm install
COPY . .
CMD [ "node", "index.js" ]