Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add curl to images #161

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docker-dev/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ ARG TARGETARCH
RUN echo '@previous http://nl.alpinelinux.org/alpine/v3.11/community' >> /etc/apk/repositories
RUN apk update && \
apk --no-cache add ca-certificates git bash wget gnupg zip unzip make \
openssh-client build-base bzr@previous
openssh-client build-base bzr@previous curl

# this glibc compatibility module is needed for some downloaded binaries,
# such as aws cli, to run in provisioners.
Expand Down
2 changes: 1 addition & 1 deletion docker-prod/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM alpine:latest
ARG TARGETARCH

RUN apk update && \
apk add ca-certificates git bash openssh-client
apk add ca-certificates git bash openssh-client curl

# this glibc compatibility module is needed for some downloaded binaries,
# such as aws cli, to run in provisioners.
Expand Down