balatromp/Dockerfile
Fábio André Damas 717e1552f4
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
first import
2025-07-11 14:29:04 +00:00

15 lines
346 B
Docker

FROM debian:bookworm-slim
WORKDIR /app
RUN apt-get update && apt-get install -y wget
RUN wget https://github.com/Balatro-Multiplayer/BalatroMultiplayer/releases/download/v0.2.11/server-linux
RUN apt-get purge -y wget && apt-get autoremove -y && rm -rf /var/lib/apt/lists/*
RUN chmod +x server-linux
# Run the binary
CMD ["./server-linux"]