diff --git a/Dockerfile b/Dockerfile index b565c64..1215cce 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,7 +7,7 @@ WORKDIR /app # Copy the files needed to install deps COPY package.json yarn.lock ./ -RUN yarn install --frozen-lockfile +RUN yarn install --frozen-lockfile --libc=musl ## BUILD STEP # Rebuild the source code only when needed @@ -25,7 +25,7 @@ RUN yarn build ## RUN STEP FROM node:18-alpine AS runner -LABEL author="neshura@proton.me" +LABEL author="neshura@neshweb.net" WORKDIR /app ENV NODE_ENV production