Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions projects/django/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,9 @@ RUN apt-get update -y \
&& apt-get install -y libgdal26 software-properties-common \
&& add-apt-repository -y ppa:deadsnakes/ppa \
&& apt-get install -y python3.10 python3.10-dev \
&& curl -sS https://bootstrap.pypa.io/get-pip.py | python3.10 \
&& python3.10 -m pip install -v --no-cache-dir "atheris>=2.1.1" "pyinstaller==5.0.1" "coverage==6.3.2" \
&& ln --force -s /usr/bin/python3.10 /usr/local/bin/python3 \
&& curl -sS https://bootstrap.pypa.io/get-pip.py | python3 \
&& python3 -m pip install -v --no-cache-dir "atheris>=2.1.1" "pyinstaller==5.0.1" "coverage==6.3.2" \
&& rm -rf /var/lib/apt/lists/*

RUN git clone --depth 1 https://github.com/django/django.git
Expand Down
2 changes: 1 addition & 1 deletion projects/django/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

# Build and install project (using current CFLAGS, CXXFLAGS). This is required
# for projects with C extensions so that they're built with the proper flags.
python3.10 -m pip install .
python3 -m pip install .

export DJANGO_SETTINGS_MODULE=fuzzer_project.settings

Expand Down