Skip to content

Commit

Permalink
acceptance: pin python version to 3.10
Browse files Browse the repository at this point in the history
Previously, our acceptance tests used `python:3` as the base for its
docker images. This lead to test failures when the upstream pushed a new
version of Python.

This change pins the Python version to 3.10, what assumes the tests will
fetch the latest patch version.

Release note: None
Epic: None
  • Loading branch information
rail committed Oct 25, 2022
1 parent 9603f0b commit 0f29a7e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/acceptance/compose/gss/python/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3
FROM python:3.10
ENV PYTHONUNBUFFERED 1

RUN wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | apt-key add - && \
Expand Down

0 comments on commit 0f29a7e

Please sign in to comment.