diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 00000000..956ec398 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,11 @@ +FROM node:20 AS build + +ENV NODE_ENV=production + +WORKDIR /usr/src/app +COPY . ./ + +RUN yarn cache clean +RUN yarn add + +CMD ["sh", "server/server.sh"]