Files
skevity/Dockerfile

16 lines
246 B
Docker

FROM localhost/skevety-root:latest
COPY ./external/ ./external
COPY ./source/ ./source/
COPY ./CMakeLists.txt .
RUN mkdir build
RUN cmake -DDOCKER=ON -B build .
RUN cmake --build build -j20
WORKDIR /app/build/source
CMD ["./sshGameServer"]