diff --git a/fastify/Dockerfile b/fastify/Dockerfile new file mode 100644 index 0000000..188f952 --- /dev/null +++ b/fastify/Dockerfile @@ -0,0 +1,8 @@ +FROM node:20-alpine + +WORKDIR /stocknear-backend + +COPY . . +RUN npm install + +CMD ["npm", "run", "start"] \ No newline at end of file