Skip to content

Commit

Permalink
update docker container
Browse files Browse the repository at this point in the history
  • Loading branch information
Lifeismana committed Jul 9, 2024
1 parent bf85a99 commit 52920a1
Showing 1 changed file with 10 additions and 7 deletions.
17 changes: 10 additions & 7 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
FROM debian:bookworm-slim AS base
RUN echo '\nAcquire::Retries "100";\nAcquire::https::Timeout "240";\nAcquire::http::Timeout "240";\nAPT::Install-Recommends "false";\nAPT::Install-Suggests "false";\n' > /etc/apt/apt.conf.d/99custom && \
apt-get update && apt-get install -y \
FROM archlinux:base
RUN pacman -Syu --noconfirm \
git \
ca-certificates \
python3-pip \
&& rm -rf /var/lib/apt/lists/* \
&& pip install --upgrade git+https://github.com/P1sec/hermes-dec
python \
python-pip \
jadx
RUN python -m venv /data/.venv && \
. /data/.venv/bin/activate && \
pip install --upgrade git+https://github.com/P1sec/hermes-dec

ENV PATH=/data/.venv/bin:$PATH

0 comments on commit 52920a1

Please sign in to comment.