Update Dockerfile

This commit is contained in:
Jay McCure 2024-04-22 23:52:08 +00:00 committed by Gary Holtz
parent 8cdd344ad0
commit f99f984400
1 changed files with 7 additions and 7 deletions

View File

@ -1,12 +1,12 @@
FROM alpine:latest
RUN apk add --verbose --no-cache bash \
curl \
docker-cli \
git \
mercurial \
make \
build-base
RUN apk add --verbose --no-cache bash
RUN apk add --verbose --no-cache curl
RUN apk add --verbose --no-cache docker-cli
RUN apk add --verbose --no-cache git
RUN apk add --verbose --no-cache mercurial
RUN apk add --verbose --no-cache make
RUN apk add --verbose --no-cache build-base
ENTRYPOINT ["/entrypoint.sh"]
CMD [ "-h" ]