fix: gpg key import

This commit is contained in:
2020-08-02 14:06:07 +02:00
parent 59f5dec9ca
commit 51c30d02d7
5 changed files with 47 additions and 8 deletions

View File

@ -2,17 +2,24 @@ ARG BASE_IMAGE
FROM ${BASE_IMAGE}
COPY installation-scripts /tmp/installation-scripts
RUN /tmp/installation-scripts/00-pacman-mirror.sh
RUN pacman --sync \
--refresh \
--noconfirm \
--sysupgrade docker go gcc make git rpm-builder which zip
--sysupgrade awk bash-completion docker go gcc make git which zip
COPY installation-scripts /tmp/installation-scripts
# Install PKGs from own repo
RUN /tmp/installation-scripts/00-pacman-mirror.sh
RUN pacman --sync \
--refresh \
--noconfirm \
--sysupgrade rpm-builder
ENV PATH="/root/.cargo/bin:/root/go/bin:${PATH}"
RUN for f in {01-rustup.sh,02-github-release.sh,03-go-bindata.sh}; do /tmp/installation-scripts/$f; done && \
RUN for f in {01-rustup.sh,02-go-bindata.sh}; do /tmp/installation-scripts/$f; done && \
rm --recursive --force /tmp/installation-scripts
WORKDIR /workspace