From ad16ec438b2d1226d1ac471d790e2cd2b3bc408f Mon Sep 17 00:00:00 2001 From: Gnarwhal Date: Sun, 6 Oct 2024 18:46:49 +0000 Subject: [PATCH] No yarn --- Dockerfile | 4 ++-- build-container | 26 -------------------------- 2 files changed, 2 insertions(+), 28 deletions(-) delete mode 100755 build-container diff --git a/Dockerfile b/Dockerfile index 94af7be..fba4abd 100644 --- a/Dockerfile +++ b/Dockerfile @@ -22,14 +22,14 @@ ENV NEXT_TELEMETRY_DISABLED=0 RUN yarn run build; # Production image, copy all the files and run next -FROM base AS runner +FROM chimeralinux/chimera:latest AS runner +RUN apk add nodejs shadow WORKDIR /app ENV NODE_ENV=production # Uncomment the following line in case you want to disable telemetry during runtime. ENV NEXT_TELEMETRY_DISABLED=1 -RUN apk add shadow RUN groupadd --system --gid 1001 nodejs RUN useradd --system --uid 1001 nextjs diff --git a/build-container b/build-container deleted file mode 100755 index 968a6b2..0000000 --- a/build-container +++ /dev/null @@ -1,26 +0,0 @@ -#!/usr/bin/env python3 - -import re -import subprocess -import sys - -if len(sys.argv) < 2: - print("Must provide version string", file=sys.stderr) - exit(1) - -version_pattern = re.compile(r"(\d+).(\d+).(\d+)") -version = version_pattern.match(sys.argv[1]) - -command = [ - "podman", - "build", - "--tag", "forge.monodon.me/gnarwhal/motto:latest", - "--tag", f"forge.monodon.me/gnarwhal/motto:{version[1]}", - "--tag", f"forge.monodon.me/gnarwhal/motto:{version[1]}.{version[2]}", - "--tag", f"forge.monodon.me/gnarwhal/motto:{version[1]}.{version[2]}.{version[3]}", - "./", -] - -print("Building:", " ".join(command)) -subprocess.run(command) -