7 lines
81 B
Docker
7 lines
81 B
Docker
FROM node:17-alpine
|
|
|
|
RUN npm install fastify
|
|
|
|
COPY . .
|
|
|
|
CMD ["node", "server.js"] |