diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..de34e1d --- /dev/null +++ b/Dockerfile @@ -0,0 +1,12 @@ +FROM --platform=linux/amd64 node:19-bullseye-slim + +WORKDIR /app + +COPY . . + +RUN yarn install +RUN yarn build + +EXPOSE 3000 + +CMD ["yarn","start"]