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

fix: install python3-venv and pin base image #3049

Merged
merged 1 commit into from
Aug 4, 2023
Merged
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
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
# Copyright (c) HashiCorp, Inc.
# SPDX-License-Identifier: MPL-2.0

FROM docker.mirror.hashicorp.services/jsii/superchain:1-buster-slim-node16
FROM docker.mirror.hashicorp.services/jsii/superchain:1-buster-slim-node16@sha256:deaad1d7f285cd104255ab7bd0edd6de0f51b6562973a384c776ca4cceb81d00

USER root

ARG DEFAULT_TERRAFORM_VERSION
ARG AVAILABLE_TERRAFORM_VERSIONS


RUN apt-get update -y && apt-get install -y unzip jq build-essential time
RUN apt-get update -y && apt-get install -y unzip jq build-essential time python3-venv
RUN curl https://raw.githubusercontent.com/pypa/pipenv/master/get-pipenv.py | python3
RUN npm install -g @sentry/cli --unsafe-perm

Expand Down