fixes lol
Some checks failed
Build and Push / build-all (push) Failing after 56s

This commit is contained in:
doomtube 2026-01-08 00:58:21 -05:00
parent bdc4ade8cf
commit ab51b4b504

View file

@ -12,15 +12,13 @@ FROM heroiclabs/nakama-pluginbuilder:3.35.1 AS builder
WORKDIR /backend
# Copy Go module files
# Copy Go module files and source
COPY go-modules/go.mod go-modules/go.sum* ./
# Download dependencies
RUN go mod download 2>/dev/null || go mod tidy
# Copy source
COPY go-modules/*.go ./
# Generate go.sum and download dependencies
RUN go mod tidy
# Build the plugin as a shared library
RUN go build -buildmode=plugin -trimpath -o backend.so .