diff --git a/RepostajesPy/K8S/repostajes-deployment.yaml b/RepostajesPy/K8S/repostajes-deployment.yaml index e330b15..e3c1e71 100644 --- a/RepostajesPy/K8S/repostajes-deployment.yaml +++ b/RepostajesPy/K8S/repostajes-deployment.yaml @@ -35,7 +35,7 @@ spec: - gunicorn - --bind - 0.0.0.0:5000 - - repostajespy:create_app() + - repostajes:create_app() image: creylopez/repostajes:$IMG_VERSION name: repostajespy env: diff --git a/RepostajesPy/servicios/Dockerfile b/RepostajesPy/servicios/Dockerfile index f974546..6cb828f 100644 --- a/RepostajesPy/servicios/Dockerfile +++ b/RepostajesPy/servicios/Dockerfile @@ -12,6 +12,7 @@ ENV PYTHONUNBUFFERED=1 RUN apt-get update && apt-get install -y sqlite3 COPY requirements.txt requirements.txt +RUN pip install --upgrade pip RUN pip3 install -r requirements.txt COPY . .