♻️ Put api_server and db_updater scripts on the backend root

This commit is contained in:
2023-10-22 23:31:35 +02:00
parent 3434802b31
commit 0a7337a313
6 changed files with 9 additions and 6 deletions

View File

@@ -35,6 +35,7 @@ env VIRTUAL_ENV=/app/.venv \
COPY --from=builder ${VIRTUAL_ENV} ${VIRTUAL_ENV}
COPY api /app/api
COPY db_updater /app/db_updater
COPY config.sample.yaml .
COPY db_updater.py .
CMD ["python", "-m", "db_updater.fill_db"]
CMD ["./db_updater.py"]