fix parrot dockerfile

This commit is contained in:
Philippe Teuwen 2024-09-10 01:17:25 +02:00
commit a907e93d19
2 changed files with 6 additions and 4 deletions

View file

@ -9,10 +9,8 @@ RUN apt-get update && \
apt-get install -y --no-install-recommends git ca-certificates build-essential cmake pkg-config libreadline-dev gcc-arm-none-eabi libnewlib-dev libbz2-dev liblz4-dev libbluetooth-dev libpython3-dev libssl-dev libgd-dev sudo && \ apt-get install -y --no-install-recommends git ca-certificates build-essential cmake pkg-config libreadline-dev gcc-arm-none-eabi libnewlib-dev libbz2-dev liblz4-dev libbluetooth-dev libpython3-dev libssl-dev libgd-dev sudo && \
apt-get clean apt-get clean
RUN apt-get install -y python3-minimal && \ RUN apt-get install -y python3-minimal python3-pip python3-venv && \
apt-get install -y python3-pip && \ apt-get clean
apt-get clean && \
python3 -m pip install ansicolors sslcrypto
RUN apt-get install -y opencl-dev && \ RUN apt-get install -y opencl-dev && \
apt-get clean apt-get clean

View file

@ -5,4 +5,8 @@
# docker/parrot-core-latest/run_tests.sh; # docker/parrot-core-latest/run_tests.sh;
sudo apt update && sudo apt upgrade -y sudo apt update && sudo apt upgrade -y
python3 -m venv /tmp/venv
source /tmp/venv/bin/activate
python3 -m pip install --use-pep517 pyaes
python3 -m pip install ansicolors sslcrypto
tools/release_tests.sh tools/release_tests.sh