From c901dda373a56e85a73594c0250c61901778bb2d Mon Sep 17 00:00:00 2001 From: danielvanini-del Date: Mon, 1 Dec 2025 14:12:05 +0100 Subject: [PATCH] Create getting-started --- app/getting-started | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 app/getting-started diff --git a/app/getting-started b/app/getting-started new file mode 100644 index 000000000..0b6781e68 --- /dev/null +++ b/app/getting-started @@ -0,0 +1,11 @@ +FROM node:lts-alpine + +WORKDIR /app + +COPY . . + +RUN yarn install --production + +CMD ["node","src/index.js"] + +EXPOSE 3000