ws4kp/Dockerfile
Mitchell Scott 5da4a50a96 Revert "Pin Node to v16."
This reverts commit d850165752.
2023-04-19 16:04:05 -06:00

8 lines
100 B
Docker

FROM node:18-alpine
WORKDIR /app
COPY package*.json .
RUN npm ci
COPY . .
CMD ["node", "index.js"]