diff options
author | Jonas Gunz <himself@jonasgunz.de> | 2022-11-11 00:18:46 +0100 |
---|---|---|
committer | Jonas Gunz <himself@jonasgunz.de> | 2022-11-11 00:18:46 +0100 |
commit | 1cb62685afe79e7d3ab5c38b1ff6900c587f96d3 (patch) | |
tree | ef73c4093cc1fc8224e038eae8fccb171fba24c9 /Dockerfile | |
parent | 800ded9aac3cb1d735609748a3967af3532d0cd9 (diff) | |
download | aurbuilder-1cb62685afe79e7d3ab5c38b1ff6900c587f96d3.tar.gz |
more working
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -1,9 +1,10 @@ FROM archlinux:base-devel -ARG AUR_RPC_BASE_URL="https://aur.archlinux.org/rpc/" -ARG PACKAGE_NAME="" -ARG BUILD_ALL_AUR_DEPENDS="no" -ARG PACKAGER="John Doe <john@doe.com>" +ENV PACKAGE_NAME="" +ENV PACKAGER="John Doe <John.Doe@example.com>" +ENV ARCH="x86_64" +ENV FORCE_REBUILD="no" +ENV CHOWM="" RUN pacman --noconfirm -Syu RUN pacman --noconfirm -S git sudo @@ -13,9 +14,8 @@ RUN useradd -G sudo -d /workdir -m aurbuilder COPY --chown=root:root sudoers /etc/sudoers -RUN mkdir /pkgout /db +RUN mkdir /pkgout VOLUME /pkgout -VOLUME /db RUN pacman --noconfirm -S python python-requests |