-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
28 lines (26 loc) · 738 Bytes
/
Copy pathDockerfile
File metadata and controls
28 lines (26 loc) · 738 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
FROM ubuntu:latest
RUN apt update
RUN apt install -y \
autoconf \
autoconf-archive \
automake \
build-essential \
cmake \
curl \
git \
libgl-dev \
libwayland-dev \
libx11-dev \
libxcursor-dev \
libxi-dev \
libxinerama-dev \
libxkbcommon-dev \
libxrandr-dev \
ninja-build \
pkg-config \
wget \
zip
RUN git clone https://github.com/microsoft/vcpkg /vcpkg
ENV VCPKG_ROOT=/vcpkg
RUN /vcpkg/bootstrap-vcpkg.sh
RUN curl -LsSf https://astral.sh/uv/install.sh | sh