Spaces:
Runtime error
Runtime error
File size: 132 Bytes
c08d979 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
FROM node:18-slim
WORKDIR /usr/src/app
COPY package*.json ./
RUN npm install
COPY . .
EXPOSE 3000
CMD ["node", "src/index.js"] |