Se realiza una nueva implmentacion para la autenticacion con la api de Google.

This commit is contained in:
Mongar28
2024-11-27 02:13:30 -05:00
parent 86b3fc8d0e
commit 283da64cd3
16 changed files with 624 additions and 4640 deletions

View File

@@ -1,12 +1,15 @@
FROM python:3.11-slim
RUN pip install poetry==1.6.1
RUN pip install poetry==1.8.4
RUN poetry config virtualenvs.create false
WORKDIR /code
COPY ./pyproject.toml ./README.md ./poetry.lock* ./
COPY ./pyproject.toml ./README.md ./
# Generar el archivo lock desde cero
RUN poetry lock --no-update
COPY ./package[s] ./packages