mirror of
https://github.com/hashicorp/terraform.git
synced 2025-12-18 23:26:07 -05:00
Dockerfile: Install ca-certificates (#36471)
* Dockerfile: Install ca-certificates * add changelog entry
This commit is contained in:
parent
dcce20fdfb
commit
7f65589863
2 changed files with 6 additions and 1 deletions
5
.changes/backported/ENHANCEMENTS-20250211-36471.yaml
Normal file
5
.changes/backported/ENHANCEMENTS-20250211-36471.yaml
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
kind: ENHANCEMENTS
|
||||
body: Include `ca-certificates` package in our official Docker image to help with certificate handling by downstream
|
||||
time: 2025-02-11T16:59:22.000+00:00
|
||||
custom:
|
||||
Issue: "36471"
|
||||
|
|
@ -13,7 +13,7 @@
|
|||
FROM docker.mirror.hashicorp.services/golang:alpine
|
||||
LABEL maintainer="HashiCorp Terraform Team <terraform@hashicorp.com>"
|
||||
|
||||
RUN apk add --no-cache git bash openssh
|
||||
RUN apk add --no-cache git bash openssh ca-certificates
|
||||
|
||||
ENV TF_DEV=true
|
||||
ENV TF_RELEASE=1
|
||||
|
|
|
|||
Loading…
Reference in a new issue