mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2025-02-17 09:37:49 +01:00
12 lines
143 B
Docker
12 lines
143 B
Docker
FROM docker:latest
|
|
|
|
RUN apk add --no-cache \
|
|
bash \
|
|
ca-certificates \
|
|
curl \
|
|
tar
|
|
|
|
COPY build.sh /usr/local/bin/build
|
|
|
|
ENTRYPOINT ["build"]
|