fix: migrate to drone

This commit is contained in:
2020-06-06 17:24:05 +02:00
parent bfc79fc742
commit 461a7d9e8b
5 changed files with 92 additions and 48 deletions

View File

@ -1,4 +1,6 @@
FROM archlinux/base:latest
ARG BASE_IMAGE
FROM ${BASE_IMAGE}
COPY installation-scripts /tmp/installation-scripts
RUN /tmp/installation-scripts/00-pacman-mirror.sh
@ -6,7 +8,7 @@ RUN /tmp/installation-scripts/00-pacman-mirror.sh
RUN pacman --sync \
--refresh \
--noconfirm \
--sysupgrade go gcc make git rpm-builder which zip
--sysupgrade docker go gcc make git rpm-builder which zip
ENV PATH="/root/.cargo/bin:/root/go/bin:${PATH}"