sword_game/Dockerfile

18 lines
No EOL
273 B
Docker

FROM debian:trixie AS builder
RUN apt-get update && apt-get install -y \
cmake \
make \
g++ \
libboost-all-dev \
libssl-dev \
protobuf-compiler
COPY . /app
WORKDIR /app
RUN bash ./setup.sh
RUN cmake --build build -j$(nproc)
CMD ["build/Server"]