Skip to content

Commit 3d0c0e4

Browse files
committed
in progress upgrade to 22.04
1 parent d69c533 commit 3d0c0e4

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

client/.dockerfiles/Dockerfile

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ ARG UBUNTU_VERSION
33
FROM ubuntu:$UBUNTU_VERSION
44

55
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
99

1010
COPY ./requirements.txt /requirements.txt
1111

docker-compose.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ services:
66
context: ./server
77
dockerfile: ./.dockerfiles/Dockerfile
88
args:
9-
UBUNTU_VERSION: '20.04'
9+
UBUNTU_VERSION: '22.04'
1010
LOGIN_USER: 'docker'
1111
WORKSPACE: '/home/docker/.autotesting'
1212
image: markus-autotest-server-dev:1.1.0
@@ -28,7 +28,7 @@ services:
2828
context: ./client
2929
dockerfile: ./.dockerfiles/Dockerfile
3030
args:
31-
UBUNTU_VERSION: '20.04'
31+
UBUNTU_VERSION: '22.04'
3232
image: markus-autotest-client-dev:1.1.0
3333
container_name: 'autotest-client'
3434
volumes:

server/.dockerfiles/Dockerfile

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ ARG LOGIN_USER
88
ARG WORKSPACE
99

1010
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 \
1414
python3.7-venv \
1515
python3.8 \
1616
python3.8-venv \

0 commit comments

Comments
 (0)