Minecore-UDP-Bedrock-Monito.../Dockerfile
michuk 5b22e0fd49
All checks were successful
Build Minecore UDP check image / Build-Minecraft-Stats-Image (push) Successful in 4m0s
Aktualizovat Dockerfile
2025-06-22 17:35:41 +02:00

16 lines
317 B
Docker

FROM node:22-slim
WORKDIR /app
COPY . .
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
CMD ["npm", "run", "start"]