Skip to content
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