add stuff

This commit is contained in:
2026-05-18 19:09:22 +00:00
parent fb323b40a5
commit 5b4bc7118d
2 changed files with 104 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
FROM gitea/runner:nightly
SHELL ["/bin/bash", "-c"]
RUN apk add --no-cache \
nodejs \
npm \
make \
git \
gnupg \
python3 \
py3-pip \
curl \
unzip \
docker-cli \
libc6-compat
# tfenv
RUN git clone --depth=1 https://github.com/tfutils/tfenv.git ~/.tfenv && \
ln -s ~/.tfenv/bin/* /usr/local/bin && \
tfenv install 1.8.4 && \
tfenv use 1.8.4
# AWS CLI
RUN curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip" && \
unzip awscliv2.zip && \
./aws/install && \
rm -rf awscliv2.zip aws