This repository has been archived on 2022-06-19. You can view files and clone it, but cannot push or open issues or pull requests.

9 lines
99 B
Docker
Raw Normal View History

2022-01-20 15:16:21 +01:00
FROM node:17-alpine
2022-01-20 15:26:32 +01:00
WORKDIR /app
COPY ./ /app
2022-01-20 15:16:21 +01:00
2022-01-20 15:26:32 +01:00
RUN npm install fastify
2022-01-20 15:16:21 +01:00
CMD ["node", "server.js"]