-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDockerfile
More file actions
49 lines (47 loc) · 1.05 KB
/
Dockerfile
File metadata and controls
49 lines (47 loc) · 1.05 KB
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
FROM rust:1.91.1-trixie
# Install system dependencies for Tauri
RUN set -ex \
&& apt update \
&& apt install -y \
build-essential \
pkg-config \
cmake \
libwebkit2gtk-4.1-dev \
libgtk-3-dev \
libayatana-appindicator3-dev \
librsvg2-dev \
libsoup-3.0-dev \
libjavascriptcoregtk-4.1-dev \
libasound2-dev \
libssl-dev \
file \
patchelf \
squashfs-tools \
fuse3 \
libfuse2t64 \
xdg-utils \
clang \
libclang-dev \
curl \
unzip \
libxkbcommon-dev \
libatk1.0-dev \
libatk-bridge2.0-dev \
libgirepository1.0-dev \
libgstreamer1.0-dev \
libgstreamer-plugins-base1.0-dev \
gstreamer1.0-plugins-base \
gstreamer1.0-plugins-good \
gstreamer1.0-plugins-bad \
gstreamer1.0-plugins-ugly \
gstreamer1.0-libav \
gstreamer1.0-vaapi \
wtype \
libvulkan-dev \
vulkan-tools \
glslc \
spirv-tools \
&& rm -rf /var/lib/apt/lists/*
# Install bun
RUN curl -fsSL https://bun.com/install | bash -s "bun-v1.3.5"
ENV PATH="/root/.bun/bin:${PATH}"