Commit 3d0c0e4 1 parent d69c533 commit 3d0c0e4 Copy full SHA for 3d0c0e4
File tree 3 files changed +8
-8
lines changed
3 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -3,9 +3,9 @@ ARG UBUNTU_VERSION
3
3
FROM ubuntu:$UBUNTU_VERSION
4
4
5
5
RUN apt-get update -y && \
6
- apt-get -y install software-properties-common && \
7
- add-apt-repository -y ppa:deadsnakes/ppa && \
8
- apt-get install -y python3.11 python3.11-venv
6
+ DEBIAN_FRONTEND=noninteractive apt-get -y install software-properties-common && \
7
+ DEBIAN_FRONTEND=noninteractive add-apt-repository -y ppa:deadsnakes/ppa && \
8
+ DEBIAN_FRONTEND=noninteractive apt-get install -y python3.11 python3.11-venv
9
9
10
10
COPY ./requirements.txt /requirements.txt
11
11
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ services:
6
6
context : ./server
7
7
dockerfile : ./.dockerfiles/Dockerfile
8
8
args :
9
- UBUNTU_VERSION : ' 20 .04'
9
+ UBUNTU_VERSION : ' 22 .04'
10
10
LOGIN_USER : ' docker'
11
11
WORKSPACE : ' /home/docker/.autotesting'
12
12
image : markus-autotest-server-dev:1.1.0
@@ -28,7 +28,7 @@ services:
28
28
context : ./client
29
29
dockerfile : ./.dockerfiles/Dockerfile
30
30
args :
31
- UBUNTU_VERSION : ' 20 .04'
31
+ UBUNTU_VERSION : ' 22 .04'
32
32
image : markus-autotest-client-dev:1.1.0
33
33
container_name : ' autotest-client'
34
34
volumes :
Original file line number Diff line number Diff line change @@ -8,9 +8,9 @@ ARG LOGIN_USER
8
8
ARG WORKSPACE
9
9
10
10
RUN apt-get update -y && \
11
- apt-get -y install software-properties-common && \
12
- add-apt-repository -y ppa:deadsnakes/ppa && \
13
- apt-get -y install python3.7 \
11
+ DEBIAN_FRONTEND=noninteractive apt-get -y install software-properties-common && \
12
+ DEBIAN_FRONTEND=noninteractive add-apt-repository -y ppa:deadsnakes/ppa && \
13
+ DEBIAN_FRONTEND=noninteractive apt-get -y install python3.7 \
14
14
python3.7-venv \
15
15
python3.8 \
16
16
python3.8-venv \
You can’t perform that action at this time.
0 commit comments