From 6538244273653a278549ff61de74d0673bd5d395 Mon Sep 17 00:00:00 2001 From: ellwoodb Date: Tue, 23 Jul 2024 20:47:00 +0200 Subject: [PATCH] Added Dockerfile for fastify --- fastify/Dockerfile | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 fastify/Dockerfile 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