From b6dc8485c02c139a49e48a3b1d0e018472ffdce2 Mon Sep 17 00:00:00 2001 From: Guillermo Date: Sun, 15 Feb 2026 11:11:36 +0000 Subject: [PATCH] trying to reduce image size --- backend/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/backend/Dockerfile b/backend/Dockerfile index d64351d..0d26e7c 100644 --- a/backend/Dockerfile +++ b/backend/Dockerfile @@ -35,11 +35,11 @@ RUN apk add --no-cache libstdc++ && \ COPY --from=builder /app/.venv /app/.venv # Copiar código -COPY --chown=appuser:appuser ./src ./src -COPY --chown=appuser:appuser ./main.py* ./app.py* ./ +COPY --chown=appuser:appuser ./backend ./backend +#COPY --chown=appuser:appuser ./main.py* ./app.py* ./ USER appuser EXPOSE 8000 -CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8000"] \ No newline at end of file +CMD ["uvicorn", "beyond_api.main:app", "--host", "0.0.0.0", "--port", "8000"] \ No newline at end of file