You've already forked build-image
This commit is contained in:
50
Dockerfile
50
Dockerfile
@ -1,38 +1,30 @@
|
||||
ARG BASE_IMAGE
|
||||
FROM docker.io/library/archlinux:latest
|
||||
|
||||
FROM ${BASE_IMAGE}
|
||||
|
||||
RUN pacman --sync \
|
||||
--refresh \
|
||||
--noconfirm \
|
||||
--sysupgrade \
|
||||
awk \
|
||||
bash-completion \
|
||||
docker \
|
||||
gcc \
|
||||
git \
|
||||
go \
|
||||
make \
|
||||
podman \
|
||||
which \
|
||||
zip
|
||||
RUN pacman --sync --refresh --noconfirm --sysupgrade \
|
||||
awk \
|
||||
bash-completion \
|
||||
docker \
|
||||
gcc \
|
||||
git \
|
||||
go \
|
||||
make \
|
||||
podman \
|
||||
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 \
|
||||
docker-pushrm \
|
||||
oracle-instantclient-basic \
|
||||
oracle-instantclient-jdbc \
|
||||
oracle-instantclient-odbc \
|
||||
oracle-instantclient-sdk \
|
||||
oracle-instantclient-sqlplus \
|
||||
oracle-instantclient-tools \
|
||||
rpm-builder
|
||||
RUN pacman --sync --refresh --noconfirm --sysupgrade \
|
||||
docker-pushrm \
|
||||
oracle-instantclient-basic \
|
||||
oracle-instantclient-jdbc \
|
||||
oracle-instantclient-odbc \
|
||||
oracle-instantclient-sdk \
|
||||
oracle-instantclient-sqlplus \
|
||||
oracle-instantclient-tools \
|
||||
rpm-builder
|
||||
|
||||
ENV PATH="/root/.cargo/bin:/root/go/bin:${PATH}"
|
||||
|
||||
|
Reference in New Issue
Block a user