File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
ci/dockerfiles/deployment Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 1
- FROM golang:1.19
1
+ FROM golang:1.20
2
2
LABEL maintainer="https://github.com/cloudfoundry/bosh-bootloader"
3
3
4
4
ARG GITHUB_TOKEN
@@ -80,12 +80,12 @@ RUN curl -s https://api.github.com/repos/cloudfoundry/credhub-cli/releases/lates
80
80
81
81
RUN go install github.com/pivotal-cf/texplate@latest
82
82
83
- # Install pip
84
- RUN curl https://bootstrap.pypa.io/get-pip.py | python3
85
-
86
83
# Install yq
87
- RUN pip install yq
88
- RUN pip install -U awscli
84
+ RUN wget https://github.com/mikefarah/yq/releases/latest/download/yq_linux_amd64 -O /usr/bin/yq && \
85
+ chmod +x /usr/bin/yq
86
+
87
+ RUN curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip" && \
88
+ unzip awscliv2.zip && ./aws/install
89
89
90
90
RUN chown -R testuser:testuser /usr/local/go/pkg
91
91
RUN chown -R testuser:testuser /go
You can’t perform that action at this time.
0 commit comments