hello / Dockerfile
steren's picture
Create Dockerfile
34c528f
raw
history blame contribute delete
125 Bytes
FROM node:19
WORKDIR /usr/src/app
COPY package*.json ./
RUN npm install --only=production
COPY . .
CMD [ "node", "index.js" ]