Files
alpine-base/Dockerfile
2025-07-06 08:02:28 -07:00

18 lines
400 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 ftp-upload \
&& update-ca-certificates
COPY base-image-script/ base-image-script/
RUN chmod +x base-image-script/*.sh
# Default command (overridden by CI)
CMD ["bash"]