-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDockerfile
More file actions
19 lines (13 loc) · 829 Bytes
/
Dockerfile
File metadata and controls
19 lines (13 loc) · 829 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
FROM gitpod/workspace-full
RUN curl -L https://github.com/hasura/graphql-engine/raw/stable/cli/get.sh | bash
RUN npm install -g add @nestjs/cli expo-cli eas-cli @expo/ngrok@^4.1 nps
RUN wget https://github.com/digitalocean/doctl/releases/download/v1.77.0/doctl-1.77.0-linux-amd64.tar.gz && \
tar xf ./doctl-1.77.0-linux-amd64.tar.gz && \
sudo mv ./doctl /usr/local/bin/doctl && \
rm doctl-1.77.0-linux-amd64.tar.gz
RUN brew install kubectl kustomize tilt-dev/tap/tilt tilt-dev/tap/ctlptl kind doctl pulumi helm
RUN helm repo add bitnami https://charts.bitnami.com/bitnami
RUN wget https://github.com/stripe/stripe-cli/releases/download/v1.7.12/stripe_1.7.12_linux_x86_64.tar.gz && \
tar -xvf stripe_1.7.12_linux_x86_64.tar.gz && \
sudo mv stripe /usr/bin && \
rm -r stripe_1.7.12_linux_x86_64.tar.gz