-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
17 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#!/bin/sh | ||
|
||
cat /opt/README.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
FROM frolvlad/alpine-glibc:alpine-3.12 | ||
FROM --platform=linux/amd64 alpine:3.20.3 | ||
WORKDIR /opt/ | ||
RUN apk add --no-cache curl bind-tools jq groff && \ | ||
curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip" && \ | ||
unzip awscliv2.zip && \ | ||
./aws/install && \ | ||
wget https://github.com/ktr0731/evans/releases/download/0.9.0/evans_linux_amd64.tar.gz && \ | ||
ENV ENV="/root/.profile" | ||
RUN apk add --no-cache curl bind-tools jq yq hey aws-cli && \ | ||
wget https://github.com/ktr0731/evans/releases/download/v0.10.11/evans_linux_amd64.tar.gz && \ | ||
tar -xvf evans_linux_amd64.tar.gz && \ | ||
mv ./evans /bin/ && \ | ||
wget https://github.com/bojand/ghz/releases/download/v0.107.0-pre.3/ghz-linux-x86_64.tar.gz && \ | ||
wget https://github.com/bojand/ghz/releases/download/v0.120.0/ghz-linux-x86_64.tar.gz && \ | ||
tar -xvf ghz-linux-x86_64.tar.gz && \ | ||
mv ./ghz /bin/ && \ | ||
rm -rf ./aws/ awscliv2.zip evans_linux_amd64.tar.gz ghz-linux-x86_64.tar.gz | ||
rm -rf evans_linux_amd64.tar.gz ghz-linux-x86_64.tar.gz LICENSE ghz-web | ||
COPY .profile /root/.profile | ||
COPY ./proto/ ./proto/ | ||
COPY README.md . |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters