From 694d94c58dfec569b5b389e6e567ff69c283bdb1 Mon Sep 17 00:00:00 2001 From: Neshura Date: Wed, 20 Dec 2023 08:34:23 +0000 Subject: [PATCH] Update Dockerfile --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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