From 4f73502d004c0f56514cab2567fed084d588caac Mon Sep 17 00:00:00 2001 From: ahoemann Date: Fri, 17 Jan 2025 08:35:14 +0100 Subject: [PATCH] fix: set default environment variables names --- Containerfile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Containerfile b/Containerfile index b5b19a6..4ac1b83 100644 --- a/Containerfile +++ b/Containerfile @@ -1,9 +1,10 @@ FROM alpine:latest WORKDIR /opt/ -ENV git_url=https://git.adrianux.net -ENV website_url=https://adrianux.net -ENV debug_mode=False +ENV GIT_URL=https://git.adrianux.net +ENV WEBSITE_URL=https://adrianux.net +ENV DEBUG_MODE=False + RUN apk add --no-cache git python3 RUN git clone https://git.adrianux.net/ahoemann/Adrianux.net.git /opt RUN python3 -m venv /opt/.venv