diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 00000000..b1062d92 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,13 @@ +FROM node:20-alpine + +WORKDIR /usr/src/app + +ENV SKIP_YARN_COREPACK_CHECK 1 + +COPY . . + +RUN yarn install --frozen-lockfile + +EXPOSE 3000 + +CMD [ "yarn", "dev" ]