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