contentserver/build/buildx.Dockerfile
2024-03-22 10:38:47 +01:00

21 lines
487 B
Docker

# syntax=docker/dockerfile:1.4
FROM golang:1.21
# related to https://github.com/golangci/golangci-lint/issues/3107
ENV GOROOT /usr/local/go
# Allow to download a more recent version of Go.
# https://go.dev/doc/toolchain
# GOTOOLCHAIN=auto is shorthand for GOTOOLCHAIN=local+auto
ENV GOTOOLCHAIN auto
# Set all directories as safe
RUN git config --global --add safe.directory '*'
COPY contentserver /usr/bin/
ENTRYPOINT ["/usr/bin/contentserver"]
EXPOSE 8080
EXPOSE 9200
EXPOSE 9400