Revert "Fix for GitHub Actions"

This reverts commit d562e20715.
This commit is contained in:
João Vitória Silva
2025-01-06 11:15:20 +00:00
parent d562e20715
commit e72286c200

View File

@@ -27,7 +27,7 @@ RUN pip install --no-cache-dir poetry
COPY backend/pyproject.toml backend/poetry.lock* ./
# Install dependencies using poetry and export them to requirements.txt
RUN poetry export -f requirements.txt --without-hashes > requirements.txt
RUN poetry export -f requirements.txt --output requirements.txt --without-hashes
# Stage 3: Build FastAPI app
FROM python:3.12