mirror of
https://gitea.com/gitea/act_runner.git
synced 2026-03-03 02:10:18 +00:00
10 lines
183 B
Docker
10 lines
183 B
Docker
FROM golangci/golangci-lint:v1.23.6
|
|
|
|
RUN apt-get install git
|
|
|
|
COPY "entrypoint.sh" "/entrypoint.sh"
|
|
RUN chmod +x /entrypoint.sh
|
|
|
|
ENV GOFLAGS -mod=vendor
|
|
ENTRYPOINT ["/entrypoint.sh"]
|