feat: add ProcessedGame ledger for full idempotency in update_season_stats() (#105) #106
@ -7,4 +7,6 @@ RUN pip install --no-cache-dir -r requirements.txt
|
||||
RUN playwright install chromium
|
||||
RUN playwright install-deps chromium
|
||||
|
||||
COPY ./app /app/app
|
||||
COPY ./app /usr/src/app/app
|
||||
|
|
||||
|
||||
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "80"]
|
||||
|
||||
Loading…
Reference in New Issue
Block a user
The
COPYdestination is/app/appbut should be/usr/src/app/app(matchingWORKDIR /usr/src/app). Additionally, theCMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "80"]line is still missing. Both were present onnext-releaseand must be restored. Without the correct path and CMD, the container will fail to start.