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
djpbessems c36b4a5ba5
All checks were successful
continuous-integration/drone/push Build is passing
Specify Fastify workdir
2022-01-20 15:26:32 +01:00

9 lines
99 B
Docker

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