Skip to content

Commit

Permalink
add ytt in remote devcontainers
Browse files Browse the repository at this point in the history
  • Loading branch information
mxfactorial committed Sep 16, 2024
1 parent 9591f72 commit 1c9b226
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,9 @@ ARG MIGRATE_VERSION=4.15.2
ARG WATCH_VERSION=8.4.0
ARG CARGO_LLVM_COV_VERSION=0.5.36

RUN go install github.com/99designs/gqlgen@latest && \
go install github.com/golang/mock/mockgen@latest && \
RUN wget -O- https://carvel.dev/install.sh > install.sh && \
sudo bash install.sh && \
rm install.sh && \
go install github.com/mikefarah/yq/v4@latest && \
chmod -R a+w /go/pkg && \
curl -fSsl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip" && \
Expand Down
3 changes: 3 additions & 0 deletions docker/.gitpod.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ FROM gitpod/workspace-full:latest
ARG TF_VERSION=1.2.7

RUN bash -lc "rustup default stable" && \
wget -O- https://carvel.dev/install.sh > install.sh && \
sudo bash install.sh && \
rm install.sh && \
go install github.com/mikefarah/yq/v4@latest && \
sudo apt-get install bc -y && \
sudo apt-get clean && \
Expand Down

0 comments on commit 1c9b226

Please sign in to comment.