fixes
Some checks failed
continuous-integration/drone Build is failing

This commit is contained in:
2025-11-29 19:02:01 +05:30
parent 8ff199ca10
commit 17a2caea49

View File

@@ -1,14 +1,11 @@
# -----------------------------------------------------
# 1. Build the Nakama plugin
# -----------------------------------------------------
FROM golang:1.22-alpine AS plugin_builder
FROM golang:1.22 AS plugin_builder
# Install full toolchain for CGO + plugins
RUN apk add --no-cache \
git \
build-base \
binutils \
musl-dev
RUN apt-get update && apt-get install -y \
build-essential \
git
WORKDIR /workspace