mirror of
https://github.com/roflmuffin/CounterStrikeSharp.git
synced 2025-12-05 15:40:24 -08:00
Co-authored-by: Michael Wilson <roflmuffin@users.noreply.github.com> Co-authored-by: root <root@ns3203586.ip-146-59-53.eu>
18 lines
383 B
Docker
18 lines
383 B
Docker
FROM registry.gitlab.steamos.cloud/steamrt/sniper/sdk:latest
|
|
|
|
WORKDIR /workspace
|
|
|
|
RUN apt update && apt install -y \
|
|
clang-16 \
|
|
cmake \
|
|
ninja-build \
|
|
git \
|
|
zlib1g-dev \
|
|
libssl-dev \
|
|
libprotobuf-dev \
|
|
protobuf-compiler \
|
|
pkg-config \
|
|
curl && \
|
|
ln -sf /usr/bin/clang-16 /usr/bin/clang && \
|
|
ln -sf /usr/bin/clang++-16 /usr/bin/clang++
|