Skip to content

chore: add jq to base image #8563

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

Merged
merged 2 commits into from
Jul 20, 2023
Merged
Changes from 1 commit
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
Next Next commit
chore: add jq to base image
  • Loading branch information
bpmct committed Jul 17, 2023
commit f06f968cb5a076edb2bbabfcf731b22d8712eb93
15 changes: 8 additions & 7 deletions scripts/Dockerfile.base
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,18 @@ FROM alpine:3.18.2
# NOTE: Keep the Terraform version in sync with minTerraformVersion and
# maxTerraformVersion in provisioner/terraform/install.go.
RUN apk add --no-cache \
curl \
wget \
bash \
git \
openssh-client && \
curl \
wget \
bash \
jq \
git \
openssh-client &&
# Use the edge repo, since Terraform doesn't seem to be backported to 3.18.
apk add --no-cache --repository=https://dl-cdn.alpinelinux.org/alpine/edge/community \
terraform=~1.5 && \
terraform=~1.5 &&
addgroup \
-g 1000 \
coder && \
coder &&
adduser \
-D \
-s /bin/bash \
Expand Down