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 974ec79 commit 257efe2Copy full SHA for 257efe2
Dockerfile
@@ -10,7 +10,8 @@ FROM python:3.9.0-slim-buster
10
COPY --from=build /src/dist/*.whl /tmp
11
# hadolint ignore=DL3013
12
13
-RUN apt-get update && apt-get install -y gcc libc-dev --no-install-recommends && pip install --no-cache-dir /tmp/*.whl && apt-get purge -y --auto-remove gcc libc-dev
+# Installing an older version of pip as we wait for a real release of gql.
14
+RUN apt-get update && apt-get install -y gcc libc-dev --no-install-recommends && pip install --no-cache-dir pip==20.1.1 && pip install --no-cache-dir /tmp/*.whl && apt-get purge -y --auto-remove gcc libc-dev
15
16
RUN groupadd -r etos && useradd -r -s /bin/false -g etos etos
17
USER etos
0 commit comments