Files
dockerfiles/mixer-ci/Dockerfile
T
William Douglas 5a0a2fb808 Treat CI images as differently
Create the CI images in different job units to work around image size
issues.
2024-06-14 14:46:48 -07:00

16 lines
421 B
Docker

FROM clearlinux:latest
ARG clear_ver
# Configure Go
ENV GOPATH /home/clr/go
ENV PATH="/home/clr/go/bin:${PATH}"
# Update and add bundles
RUN swupd update -V $clear_ver && \
swupd bundle-add mixer go-basic c-basic os-core-update-dev sudo && \
useradd -G wheelnopw clr && \
mkdir -p /run/lock
USER clr
RUN git config --global user.email "travis@example.com" && \
git config --global user.name "Travis CI"