Files
Brancheneinstufung2/dockerfiles/Dockerfile.proxy
Floke 680b237def refactor: [30388f42] Finale Komprimierung des Root-Verzeichnisses
- Konsolidiert Dockerfiles in .
- Verschiebt Datenbank- und Log-Dateien in .
- Organisiert Konfigurations- und Modelldateien in .
- Fasst Shell-Skripte in  zusammen.
- Verschiebt  nach .
- Verschiebt  nach .
- Das  Verzeichnis wurde in  verschoben.
- Behält Kern-Dateien (, , , ,  etc.) im Root-Verzeichnis, um die Lauffähigkeit zu gewährleisten.
2026-03-06 11:41:44 +00:00

9 lines
296 B
Docker

FROM nginx:alpine
# Install apache2-utils to generate .htpasswd natively
RUN apk add --no-cache apache2-utils
# Create the user 'admin' with password 'gemini' using bcrypt (most secure & compatible)
RUN htpasswd -bc /etc/nginx/.htpasswd admin gemini
COPY nginx-proxy.conf /etc/nginx/nginx.conf