2019-04-18 15:33:44 +00:00
|
|
|
FROM archlinux/base:latest
|
|
|
|
|
|
|
|
RUN pacman --sync \
|
|
|
|
--refresh \
|
|
|
|
--noconfirm \
|
2019-08-25 19:08:16 +00:00
|
|
|
--sysupgrade go gcc make git which
|
2019-04-18 15:33:44 +00:00
|
|
|
|
2019-08-25 19:08:16 +00:00
|
|
|
ENV PATH="/root/.cargo/bin:/root/go/bin:${PATH}"
|
2019-08-19 16:28:06 +00:00
|
|
|
|
2019-08-25 13:11:04 +00:00
|
|
|
COPY installation-scripts /tmp/installation-scripts
|
|
|
|
RUN chmod +x /tmp/installation-scripts/* && \
|
|
|
|
for f in $(ls /tmp/installation-scripts); do /tmp/installation-scripts/$f; done && \
|
|
|
|
rm -rf /tmp/installation-scripts
|
2019-08-19 16:28:06 +00:00
|
|
|
|
2019-04-18 15:33:44 +00:00
|
|
|
WORKDIR /workspace
|