We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f7c474a commit b8ed258Copy full SHA for b8ed258
Dockerfile
@@ -1,7 +1,9 @@
1
FROM python:3.10.13-slim as builder
2
ENV PYTHONUNBUFFERED=1
3
ENV PYTHONDONTWRITEBYTECODE=1
4
-RUN apt-get update
+RUN apt-get update && apt-get install -y --no-install-recommends \
5
+ postgresql-client \
6
+ && rm -rf /var/lib/apt/lists/*
7
RUN pip3 install poetry==1.7.1
8
RUN poetry config virtualenvs.create false
9
WORKDIR /app/
kubernetes/deployments/gamificationengine-deployment.yaml
@@ -76,6 +76,6 @@ spec:
76
configMapKeyRef:
77
key: VERSION_APP
78
name: env-prod
79
- image: fvergaracl/game:v0.0.003
+ image: fvergaracl/game:v0.0.005
80
name: game-api
81
restartPolicy: Always
0 commit comments