Skip to content

Commit cea71ab

Browse files
authored
Merge pull request #128 from Preocts/preocts
Use 3.11 to build inital venv
2 parents f613a36 + e93ff2f commit cea71ab

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ ENV LANG=C.UTF-8
55
RUN apt-get update
66
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends software-properties-common
77
RUN add-apt-repository -y 'ppa:deadsnakes/ppa'
8-
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends python3.8 python3.8-venv python3.9 python3.10 python3.11 python3.12
8+
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends python3.8-distutils python3.8 python3.9 python3.10 python3.11-venv python3.12
99
RUN rm -rf /var/lib/apt/lists/*
1010

1111
WORKDIR /src
1212

1313
ENV PATH=/venv/bin:$PATH
14-
RUN python3.8 -m venv /venv
14+
RUN python3.11 -m venv /venv
1515
RUN python -m pip install --upgrade nox --no-cache-dir
1616

1717
COPY . /src

0 commit comments

Comments
 (0)