Some checks failed
Build Alpine RootFS and Docker Image (latest) / build-rootfs (push) Failing after 16s
Build Alpine RootFS and Docker Image (latest) / push-tarball (push) Has been skipped
Build Alpine RootFS and Docker Image (latest) / push-docker (push) Has been skipped
Build Alpine RootFS and Docker Image (latest) / update-changelog (push) Has been skipped
Build Alpine RootFS and Docker Image (latest) / update-build-info (push) Has been skipped
16 lines
377 B
Docker
16 lines
377 B
Docker
FROM alpine:latest
|
|
LABEL maintainer="fithwum"
|
|
|
|
ARG VERSION
|
|
WORKDIR /builder
|
|
|
|
# Install needed Alpine build tools
|
|
RUN apk update && apk add --no-cache bash curl wget git sudo jq util-linux coreutils ca-certificates \
|
|
&& update-ca-certificates
|
|
|
|
COPY base-image-script/ base-image-script/
|
|
RUN chmod +x base-image-script/*.sh
|
|
|
|
# Default command (overridden by CI)
|
|
CMD ["bash"]
|