mirror of
https://github.com/pagefaultgames/rogueserver.git
synced 2025-04-04 03:57:13 +08:00

chore: Update dependencies and clean up code chore: Update dependencies, add Discord OAuth2 authentication endpoint, and clean up code chore: Update dependencies, add Google OAuth2 authentication endpoint, and clean up code Code clean up uniqueness on external account id chore: Add Discord and Google OAuth2 authentication endpoints, and update dependencies code review fixes
31 lines
476 B
Docker
31 lines
476 B
Docker
ARG GO_VERSION=1.22
|
|
|
|
FROM golang:${GO_VERSION} AS builder
|
|
|
|
WORKDIR /src
|
|
|
|
COPY ./go.mod /src/
|
|
COPY ./go.sum /src/
|
|
|
|
RUN go mod download && go mod verify
|
|
|
|
COPY . /src/
|
|
|
|
RUN CGO_ENABLED=0 \
|
|
go build -o rogueserver
|
|
|
|
RUN chmod +x /src/rogueserver
|
|
|
|
# ---------------------------------------------
|
|
|
|
FROM scratch
|
|
|
|
WORKDIR /app
|
|
|
|
COPY --from=builder /src/rogueserver .
|
|
COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
|
|
|
|
EXPOSE 8001
|
|
|
|
ENTRYPOINT ["./rogueserver"]
|