Skip to content

Commit

Permalink
Fix hardcoding for testing
Browse files Browse the repository at this point in the history
  • Loading branch information
JesusRo authored Oct 27, 2024
1 parent 6bfaa0c commit 7cd3bb0
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions image/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ RUN set -x && \
apt update && apt upgrade \
apt install -y wget libglib2.0-0 libevent-2.1-7 libevent-pthreads-2.1-7 libwim15 libhivex0 && \
cd /tmp && \
wget "https://github.com/ventoy/PXE/releases/download/v1.0.20/iventoy-1.0.20-linux-free.tar.gz" && \
tar -xvf ./iventoy-1.0.20-linux-free.tar.gz && \
rm -Rf ./iventoy-1.0.20/iso/ && \
rm -Rf ./iventoy-1.0.20/data/config.dat && \
wget "https://github.com/ventoy/PXE/releases/download/v$version/iventoy-$version-linux-free.tar.gz" && \
tar -xvf ./iventoy-$version-linux-free.tar.gz && \
rm -Rf ./iventoy-$version/iso/ && \
rm -Rf ./iventoy-$version/data/config.dat && \
mkdir -p /run/iventoy && \
cp -Rvf ./iventoy-1.0.20/* /run/iventoy/ && \
cp -Rvf ./iventoy-$version/* /run/iventoy/ && \
chmod +x /run/iventoy/lib/iventoy && \
apt-get clean autoclean && \
apt-get autoremove --yes && \
Expand Down

0 comments on commit 7cd3bb0

Please sign in to comment.