2021-09-29 18:08:39 +00:00
|
|
|
ARG ALPINE_VERSION=3.13.6
|
|
|
|
FROM alpine:${ALPINE_VERSION}
|
2024-06-21 15:21:51 +00:00
|
|
|
LABEL org.opencontainers.image.authors="f@sutty.nl"
|
2019-09-10 23:23:52 +00:00
|
|
|
|
2019-09-18 16:47:30 +00:00
|
|
|
RUN apk add --no-cache alpine-sdk ccache cmake
|
2019-09-10 23:23:52 +00:00
|
|
|
RUN adduser -s /bin/sh -D builder
|
|
|
|
RUN adduser builder abuild
|
|
|
|
|
2020-07-27 19:40:07 +00:00
|
|
|
ENV PATH=/usr/lib/ccache/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
|