forked from screenpipe/screenpipe
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
67 lines (62 loc) · 1.36 KB
/
Copy pathDockerfile
File metadata and controls
67 lines (62 loc) · 1.36 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
# Use the specified base image
FROM mcr.microsoft.com/devcontainers/base:ubuntu-22.04
# Switch to the vscode user
USER vscode
# Install Rust
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
# Update package lists and install dependencies
RUN sudo apt-get update && sudo apt-get install -y \
g++ \
ffmpeg \
tesseract-ocr \
cmake \
libavformat-dev \
libavfilter-dev \
libavdevice-dev \
libssl-dev \
libtesseract-dev \
libxdo-dev \
libsdl2-dev \
libclang-dev \
libxtst-dev \
libx11-dev \
libxext-dev \
libxrandr-dev \
libxinerama-dev \
libxcursor-dev \
libxi-dev \
libgl1-mesa-dev \
libasound2-dev \
libpulse-dev \
curl \
pkg-config \
libsqlite3-dev \
sqlite3 \
libbz2-dev \
zlib1g-dev \
libonig-dev \
libayatana-appindicator3-dev \
libsamplerate-dev \
libwebrtc-audio-processing-dev \
libgtk-3-dev \
libwebkit2gtk-4.1-dev \
librsvg2-dev \
patchelf \
xvfb \
x11-utils \
x11-xserver-utils \
x11-apps \
xdotool \
openbox \
xterm \
fonts-liberation \
imagemagick \
fonts-dejavu \
alsa-utils \
pulseaudio \
pulseaudio-utils \
&& sudo apt-get clean \
&& sudo rm -rf /var/lib/apt/lists/*
# Install Bun
RUN curl -fsSL https://bun.sh/install | bash
EXPOSE 3000 3030