File tree 1 file changed +20
-5
lines changed
1 file changed +20
-5
lines changed Original file line number Diff line number Diff line change @@ -22,21 +22,36 @@ RUN --mount=type=cache,target=/root/.cache/go-build \
22
22
-o reaper \
23
23
cmd/reaper/main.go
24
24
25
- FROM python:3.10 as image-full
25
+ FROM ubuntu:jammy as image-full
26
26
27
27
SHELL ["/bin/bash" , "-o" , "pipefail" , "-c" ]
28
28
29
+ ARG DEBIAN_FRONTEND=noninteractive
29
30
RUN --mount=type=cache,sharing=private,target=/var/cache/apt \
30
31
apt-get update && \
31
32
apt-get install -y \
33
+ build-essential \
34
+ curl \
35
+ dbus \
36
+ dnsutils \
37
+ file \
32
38
gcc \
39
+ libblas-dev \
40
+ libjpeg8-dev \
41
+ liblapack-dev \
33
42
libmpc-dev \
34
43
libmpfr-dev \
35
- dnsutils \
36
- netcat-openbsd \
44
+ libpng-dev \
45
+ libssl-dev \
37
46
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 && \
40
55
rm -rf /var/lib/apt/lists/*
41
56
42
57
COPY client_env/requirements.txt /requirements.txt
You can’t perform that action at this time.
0 commit comments