Skip to content

Commit

Permalink
add jre
Browse files Browse the repository at this point in the history
  • Loading branch information
Lifeismana committed Jul 10, 2024
1 parent 5985351 commit 0ad2cc4
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,8 @@ on:
- cron: '0 5 * * 1'
push:
branches: [ "main" ]
# Publish semver tags as releases.
paths:
- 'scripts.sh'
- 'setup.sh'
- 'Dockerfile'
- '.github/workflows/build.yml'

Expand Down
3 changes: 2 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,14 @@ RUN pacman -Syu --noconfirm \
git \
python \
python-pip \
jre-openjdk \
jadx \
unzip
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
ENV PATH=/usr/lib/jvm/default/bin:/data/.venv/bin:$PATH
COPY --from=build /root/.cargo/bin/* /usr/local/bin/
COPY setup.sh /data/setup.sh
CMD [ "/data/setup.sh" ]
6 changes: 6 additions & 0 deletions script.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
#!/bin/bash

# debug
echo "start debug"
command -v java

echo "end debug"

set -e

APPS="com.valvesoftware.android.steam.community com.valvesoftware.android.steam.friendsui com.valvesoftware.steamlink"
Expand Down

0 comments on commit 0ad2cc4

Please sign in to comment.