Added build for Fastify
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
2022-01-20 15:16:21 +01:00
parent c7dabda145
commit 21bb235a3f
11 changed files with 58 additions and 5 deletions

7
Fastify/Dockerfile Normal file
View File

@ -0,0 +1,7 @@
FROM node:17-alpine
RUN npm install fastify
COPY . .
CMD ["node", "server.js"]