From 9b06927477549551167f0a2848dcde09355df53f Mon Sep 17 00:00:00 2001 From: Alex Lebens Date: Thu, 31 Jul 2025 17:30:11 -0500 Subject: [PATCH] fix dockerfile --- Dockerfile | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 5dc5bcf..5586a76 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,8 +1,8 @@ ARG REGISTRY=docker.io FROM ${REGISTRY}/node:22.17.1-alpine3.22 AS base -LABEL version="1.1.1" -LABEL description="Astro based personal website" +LABEL version="0.0.1" +LABEL description="Astro based documentation website" ENV PNPM_HOME="/pnpm" ENV PATH="$PNPM_HOME:$PATH" @@ -28,8 +28,7 @@ COPY --from=prod-deps /app/node_modules /app/node_modules COPY --from=build /app/dist /app/dist ENV HOST=0.0.0.0 -ENV SITE_URL=https://www.alexlebens.dev -ENV DIRECTUS_URL=https://directus.alexlebens.dev +ENV SITE_URL=https://docs.alexlebens.dev ENV PORT=4321 EXPOSE $PORT