aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
authorRuben ten Hove <git@rhtenhove.nl>2020-05-14 14:34:01 +0200
committerDominik Maier <domenukk@gmail.com>2020-05-14 21:47:04 +0200
commit74eae83b54bf5ad79c35598f8d55019d3287c155 (patch)
tree33fb72a0e757854f305c56c0f15f739439f2e9ea /Dockerfile
parent324b44872c4f292594889305886eea0d77208479 (diff)
downloadAFLplusplus-74eae83b54bf5ad79c35598f8d55019d3287c155.tar.gz
use only python3 in new builds
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile9
1 files changed, 4 insertions, 5 deletions
diff --git a/Dockerfile b/Dockerfile
index 1adc2167..d82228fe 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,4 +1,4 @@
-FROM ubuntu:eoan
+FROM ubuntu
MAINTAINER David Carlier <devnexen@gmail.com>
LABEL "about"="AFLplusplus docker image"
RUN apt-get update && apt-get -y install \
@@ -10,8 +10,9 @@ RUN apt-get update && apt-get -y install \
clang-9 \
flex \
git \
- python3.7 \
- python3.7-dev \
+ python3 \
+ python3-dev \
+ python3-setuptools \
gcc-9 \
gcc-9-plugin-dev \
gcc-9-multilib \
@@ -20,8 +21,6 @@ RUN apt-get update && apt-get -y install \
libtool-bin \
libglib2.0-dev \
llvm-9-dev \
- python-setuptools \
- python2.7-dev \
wget \
ca-certificates \
libpixman-1-dev \