From 17a2caea49cbdf104c9e0b14d8efef9cdee968a0 Mon Sep 17 00:00:00 2001 From: Vishesh 'ironeagle' Bangotra Date: Sat, 29 Nov 2025 19:02:01 +0530 Subject: [PATCH] fixes --- Dockerfile | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/Dockerfile b/Dockerfile index 51dfbec..4f78323 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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