File tree Expand file tree Collapse file tree 1 file changed +11
-11
lines changed Expand file tree Collapse file tree 1 file changed +11
-11
lines changed Original file line number Diff line number Diff line change 1
- FROM ubuntu:20 .04
1
+ FROM ubuntu:24 .04
2
2
3
3
ENV DEBIAN_FRONTEND=noninteractive
4
4
5
- RUN apt-get update && apt-get install -yqq apt-transport-https
5
+ RUN apt-get update && apt-get install -yqq --no-install-recommends \
6
+ apt-transport-https \
7
+ software-properties-common && \
8
+ rm -rf /var/lib/apt/lists/*
6
9
7
- # deadsnakes holds old versions of python for ubuntu
8
- RUN apt-get install -yqq software-properties-common && \
9
- add-apt-repository ppa:deadsnakes/ppa
10
-
11
- RUN apt-get update && \
12
- apt-get -yqq install \
10
+ # deadsnakes holds additional Python versions for Ubuntu
11
+ RUN add-apt-repository -y 'ppa:deadsnakes/ppa' && \
12
+ apt-get update && \
13
+ apt-get -yqq install --no-install-recommends \
13
14
python3.8 \
14
15
python3.9 \
15
16
python3.10 \
16
17
python3.11 \
17
18
python3.12 \
18
19
python3.13 \
19
- python3-pip
20
-
21
- RUN pip3 install tox==4.11.3
20
+ python3-pip && \
21
+ rm -rf /var/lib/apt/lists/*
22
22
23
23
COPY . /indico-client
24
24
WORKDIR /indico-client
You can’t perform that action at this time.
0 commit comments