go-toolbox/Dockerfile
Stanislav N. aka pztrn eeb176d1e9
All checks were successful
Build container / BuildImage (push) Successful in 1m58s
Update Debian to Trixie (13).
2025-09-11 02:34:15 +05:00

22 lines
591 B
Docker
Executable File

FROM debian:13.1-slim
COPY . /src
RUN for file in $(find /src -type f -name "*.sh"); do chmod +x $file; done
RUN /src/scripts/workers/debian.sh
RUN /src/scripts/workers/golang.sh
RUN /src/scripts/workers/dlv.sh
RUN /src/scripts/workers/golangci-lint.sh
RUN /src/scripts/workers/gofumpt.sh
RUN /src/scripts/workers/mockery.sh
RUN /src/scripts/workers/taskfile.sh
RUN /src/scripts/workers/go-junit-report.sh
RUN mkdir /home/container && chmod 0777 /home/container
ENV HOME=/home/container
ENV GOPATH=/home/container/go
ENV GOCACHE=/home/container/.cache
ENTRYPOINT ["/src/entrypoint.sh"]