This repository has been archived on 2022-06-19. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
ContainerImage.WendyUI/Fastify/Dockerfile

7 lines
81 B
Docker
Raw Normal View History

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