From b003a1153a580e0c5d5e032ce0e2f10d8986488f Mon Sep 17 00:00:00 2001 From: gitea Date: Wed, 10 Jun 2026 01:50:46 +0800 Subject: [PATCH] Upload files to "/" --- compose.yaml | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/compose.yaml b/compose.yaml index 0958d1d..dd0ea14 100644 --- a/compose.yaml +++ b/compose.yaml @@ -1,16 +1,12 @@ -version: '3.8' - services: csv-editor: image: python:3.13-slim container_name: finance-csv-editor working_dir: /app - command: > - command: > - sh -c "ls -la && pip install --no-cache-dir -r /app/requirements.txt && python /app/app.py" ports: - "5678:5000" volumes: - # This grabs the files cloned from Gitea and drops them right into the app - - .:/app - restart: always \ No newline at end of file + - .:/app + restart: always + command: > + sh -c "pip install --no-cache-dir -r requirements.txt && python app.py" \ No newline at end of file