Skip to content

Commit

Permalink
[linux_dist/appimage] fix: AppImage build script
Browse files Browse the repository at this point in the history
  • Loading branch information
vinifmor committed Dec 17, 2022
1 parent a0ed3ab commit d05013f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions linux_dist/appimage/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ ARG bauh_commit
ENV BAUH_VERSION=$bauh_commit
ENV DEBIAN_FRONTEND=noninteractive

RUN apt-get update && \
apt-get upgrade && \
RUN apt-get update -y && \
apt-get upgrade -y && \
apt-get install python3-pip python3-setuptools python3-wheel wget fuse binutils coreutils desktop-file-utils fakeroot patchelf squashfs-tools strace zsync libgdk-pixbuf2.0-dev gtk-update-icon-cache -y && \
mkdir /build && cd /build && \
wget https://github.com/AppImageCrafters/appimage-builder/releases/download/v0.9.2/appimage-builder-0.9.2-35e3eab-x86_64.AppImage -O appimage-builder && \
Expand Down
2 changes: 1 addition & 1 deletion linux_dist/appimage/build.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/bin/bash
docker build -t bauh-appimage --build-arg bauh_commit=$BAUH_COMMIT .
docker build -t bauh-appimage --build-arg bauh_commit=$BAUH_COMMIT . && \
docker run --cap-add=SYS_ADMIN --device /dev/fuse --mount type=bind,source="$(pwd)",target=/build bauh-appimage

0 comments on commit d05013f

Please sign in to comment.