File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -5,13 +5,13 @@ ENV LANG=C.UTF-8
5
5
RUN apt-get update
6
6
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends software-properties-common
7
7
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
9
9
RUN rm -rf /var/lib/apt/lists/*
10
10
11
11
WORKDIR /src
12
12
13
13
ENV PATH=/venv/bin:$PATH
14
- RUN python3.8 -m venv /venv
14
+ RUN python3.11 -m venv /venv
15
15
RUN python -m pip install --upgrade nox --no-cache-dir
16
16
17
17
COPY . /src
You can’t perform that action at this time.
0 commit comments