Skip to content

Commit

Permalink
Merge pull request #5 from 0xjams/docker-arm-support
Browse files Browse the repository at this point in the history
Modified the Dockerfile of the standalone dir so that jwt_forgery.py
  • Loading branch information
v-p-b authored May 1, 2024
2 parents fc92309 + d181f5c commit 2b1ef11
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions standalone/Dockerfile
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 2b1ef11

Please sign in to comment.