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