Dockerfile

This commit is contained in:
xxqfamous 2023-05-23 18:17:57 +08:00
parent bffe0ca1b7
commit ebf898c297
1 changed files with 10 additions and 0 deletions

10
Dockerfile Normal file
View File

@ -0,0 +1,10 @@
FROM bitnami/git:latest
RUN sed -i 's/deb.debian.org/mirrors.tuna.tsinghua.edu.cn/g' /etc/apt/sources.list
RUN apt update
RUN apt install -y vim nano curl wget
RUN wget http://go.dev/dl/go1.20.4.linux-amd64.tar.gz
RUN tar -C /usr/local -xzf go1.20.4.linux-amd64.tar.gz
ENV PATH=$PATH:/usr/local/go/bin
RUN go version
ADD ./ /gitea_hat/
RUN cd /gitea_hat/ && ls -lh && sh build.sh