Aktualizovat Dockerfile
All checks were successful
Build Minecore UDP check image / Build-Minecraft-Stats-Image (push) Successful in 4m0s

This commit is contained in:
michuk 2025-06-22 17:35:41 +02:00
parent a78854b0be
commit 5b22e0fd49

View File

@ -1,7 +1,15 @@
FROM node:22-alpine
FROM node:22-slim
WORKDIR /app
COPY . .
RUN apk add --no-cache libc6-compat
RUN apt-get update \
&& apt-get install --assume-yes --no-install-recommends --quiet \
ca-certificates \
cmake \
git \
g++ \
make \
libzip-dev \
&& apt-get clean all
RUN npm install
RUN npm install raknet-native
EXPOSE 3000