diff --git a/server/Dockerfile b/server/Dockerfile new file mode 100644 index 0000000..6f8660a --- /dev/null +++ b/server/Dockerfile @@ -0,0 +1,5 @@ +FROM node:18-alpine +WORKDIR /server +COPY package.json yarn.lock ./ +RUN yarn install --immutable --immutable-cache --check-cache +RUN yarn dev