Added Dockerfile for fastify

This commit is contained in:
ellwoodb 2024-07-23 20:47:00 +02:00
parent 8eba882ed7
commit 6538244273

8
fastify/Dockerfile Normal file
View File

@ -0,0 +1,8 @@
FROM node:20-alpine
WORKDIR /stocknear-backend
COPY . .
RUN npm install
CMD ["npm", "run", "start"]