5 lines
100 B
Docker
Raw Permalink Normal View History

2022-06-08 16:04:45 +02:00
# syntax=docker/dockerfile:1
FROM node:12-alpine
COPY . .
2022-06-09 16:41:31 +02:00
RUN npm install
CMD ["node", "./index.js"]