From 7fc81a0f65e969b7f545a3d8910229ded367744c Mon Sep 17 00:00:00 2001 From: Rune Olsen Date: Thu, 22 Jan 2026 16:26:21 +0100 Subject: [PATCH] dockerfile --- Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index a8b2f47..b1fd91d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,15 +11,16 @@ RUN pip install --no-cache-dir -r requirements.txt COPY app.py . COPY malias_wrapper.py . COPY malias.py . +COPY reset_password.py . COPY templates/ templates/ COPY static/ static/ # Create data directory RUN mkdir -p /app/data -# Copy entrypoint script +# Copy entrypoint script and make scripts executable COPY docker-entrypoint.sh . -RUN chmod +x docker-entrypoint.sh +RUN chmod +x docker-entrypoint.sh reset_password.py # Expose port EXPOSE 5172