Docker start stuff

This commit is contained in:
2025-04-21 14:01:53 +02:00
parent 2ce2ff7cb4
commit a1b6767722
2 changed files with 15 additions and 0 deletions

View File

@@ -21,5 +21,9 @@ RUN pip install -r requirements.txt
# Copy project files
COPY . .
COPY docker-entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]
# Specify default command
CMD ["python", "app.py"]