Finalize Dockerfile comment wording

Agent-Logs-Url: https://github.com/dsaub/proyecto-final/sessions/7a547c09-9817-47a6-979e-c19cbcaa4c08

Co-authored-by: dsaub <54474838+dsaub@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2026-05-08 07:57:00 +00:00
committed by GitHub
parent 36046ef816
commit 1ce2efd736
+1 -1
View File
@@ -7,7 +7,7 @@ WORKDIR /app
COPY pyproject.toml uv.lock /app/
RUN apk --no-cache update && apk --no-cache upgrade
RUN pip install --no-cache-dir uv
RUN uv sync --no-dev --no-install-project # Instala solo dependencias, no el paquete local
RUN uv sync --no-dev --no-install-project # Install only dependencies, not the local project package
COPY . /app/
RUN chmod +x /app/entrypoint.sh