From d181f5ce8b67ec8cacd2fef18866ed145966da71 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jorge=20Mor=C3=A1n?= Date: Tue, 30 Apr 2024 21:21:27 -0500 Subject: [PATCH] Modified the Dockerfile of the standalone dir so that jwt_forgery.py builds successfully in ARM machines --- standalone/Dockerfile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/standalone/Dockerfile b/standalone/Dockerfile index 52d921d..0895685 100644 --- a/standalone/Dockerfile +++ b/standalone/Dockerfile @@ -1,10 +1,9 @@ FROM ubuntu:20.04 -RUN apt update -RUN apt install -y python3.8 python3-pip python3-gmpy2 +RUN apt update && apt install -y python3.8 python3-pip python3-gmpy2 libgmp-dev libmpfr-dev libmpc-dev && rm -rf /var/lib/apt/lists/* WORKDIR /app -COPY . . +COPY . . RUN pip3 install -r requirements.txt