Skip to content

Commit 1ba3943

Browse files
authored
Merge pull request #20 from C4T-BuT-S4D/asokol123/fix-sage-docker
Use ubuntu:jammy instead of python:3.10 to fix sage
2 parents 4eee7b9 + eb4033b commit 1ba3943

File tree

1 file changed

+20
-5
lines changed

1 file changed

+20
-5
lines changed

client_env/Dockerfile

+20-5
Original file line numberDiff line numberDiff line change
@@ -22,21 +22,36 @@ RUN --mount=type=cache,target=/root/.cache/go-build \
2222
-o reaper \
2323
cmd/reaper/main.go
2424

25-
FROM python:3.10 as image-full
25+
FROM ubuntu:jammy as image-full
2626

2727
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
2828

29+
ARG DEBIAN_FRONTEND=noninteractive
2930
RUN --mount=type=cache,sharing=private,target=/var/cache/apt \
3031
apt-get update && \
3132
apt-get install -y \
33+
build-essential \
34+
curl \
35+
dbus \
36+
dnsutils \
37+
file \
3238
gcc \
39+
libblas-dev \
40+
libjpeg8-dev \
41+
liblapack-dev \
3342
libmpc-dev \
3443
libmpfr-dev \
35-
dnsutils \
36-
netcat-openbsd \
44+
libpng-dev \
45+
libssl-dev \
3746
net-tools \
38-
dbus \
39-
vim && \
47+
netcat-openbsd \
48+
python-is-python3 \
49+
python3 \
50+
python3-dev \
51+
python3-pip \
52+
python3-venv \
53+
vim \
54+
wget && \
4055
rm -rf /var/lib/apt/lists/*
4156

4257
COPY client_env/requirements.txt /requirements.txt

0 commit comments

Comments
 (0)