Skip to content

Commit 257efe2

Browse files
authored
Backtrack pip version as we wait for gql to create a release (#15)
1 parent 974ec79 commit 257efe2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ FROM python:3.9.0-slim-buster
1010
COPY --from=build /src/dist/*.whl /tmp
1111
# hadolint ignore=DL3013
1212

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
13+
# 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
1415

1516
RUN groupadd -r etos && useradd -r -s /bin/false -g etos etos
1617
USER etos

0 commit comments

Comments
 (0)