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.
ContainerImage.WendyUI/Fastify/Dockerfile

9 lines
116 B
Docker

FROM node:17-alpine
WORKDIR /app
COPY server.js /app/server.js
RUN npm install fastify
CMD ["node", "server.js"]