From dec236e2f9ff15036292cf096a2a17c5887c8d24 Mon Sep 17 00:00:00 2001 From: ahoemann Date: Fri, 14 Feb 2025 12:05:14 +0100 Subject: [PATCH] Delete latest.dockerfile --- latest.dockerfile | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 latest.dockerfile diff --git a/latest.dockerfile b/latest.dockerfile deleted file mode 100644 index d1433b1..0000000 --- a/latest.dockerfile +++ /dev/null @@ -1,18 +0,0 @@ -FROM alpine:latest -WORKDIR /opt/ - -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 -RUN /opt/.venv/bin/pip install --no-cache-dir -r requirements.txt -RUN apk del git - -EXPOSE 8080 - -HEALTHCHECK --interval=5m CMD wget --delete-after http://localhost:8080 - -CMD [ "/opt/.venv/bin/waitress-serve", "--listen=0.0.0.0:8080", "app:app" ]