FROM node:17-alpine

RUN npm install fastify

COPY . .

CMD ["node", "server.js"]