diff --git a/production/docker-compose.yaml b/production/docker-compose.yaml index 1fb766d..1602917 100644 --- a/production/docker-compose.yaml +++ b/production/docker-compose.yaml @@ -15,7 +15,7 @@ services: # context: ./api # dockerfile: ./Dockerfile #image: local.io/api-transcriptor:local - image: ghcr.io/guillaume-chervet/transcriptor-api:0.77.30 + image: ghcr.io/guillaume-chervet/transcriptor-api:0.77.32 ports: - "8000:8000" environment: @@ -28,7 +28,7 @@ services: # context: ./ia-worker # dockerfile: ./Dockerfile #image: local.io/ia-worker-transcriptor:local - image: ghcr.io/guillaume-chervet/transcriptor-ia-worker:0.77.29 + image: ghcr.io/guillaume-chervet/transcriptor-ia-worker:0.77.32 ports: - "8001:8000" environment: @@ -41,7 +41,7 @@ services: # context: ./webapp # dockerfile: ./Dockerfile #image: local.io/webapp-transcriptor:local - image: ghcr.io/guillaume-chervet/transcriptor-webapp:0.77.29 + image: ghcr.io/guillaume-chervet/transcriptor-webapp:0.77.32 restart: "no" ports: - "4000:8080" diff --git a/production/ia-worker/Dockerfile b/production/ia-worker/Dockerfile index 29b1058..33e619a 100644 --- a/production/ia-worker/Dockerfile +++ b/production/ia-worker/Dockerfile @@ -68,7 +68,7 @@ USER appuser # Ajouter l'environnement virtuel au PATH ENV PATH="/usr/local/bin:${PATH}" -RUN python -c "import whisper\nwhisper.load_model('small')" +RUN python -c "import whisper; whisper.load_model('small')" # Commande pour démarrer l'application CMD ["python", "./app/main.py"]