s / Dockerfile
testdeep123's picture
Upload 4 files
41abff7 verified
raw
history blame contribute delete
106 Bytes
FROM node:18-slim
WORKDIR /app
COPY package.json ./
RUN npm install
COPY . .
CMD ["node", "index.js"]