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