This repository was archived by the owner on May 4, 2026. It is now read-only.
forked from open-webui/open-terminal
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
78 lines (65 loc) · 2.38 KB
/
Dockerfile
File metadata and controls
78 lines (65 loc) · 2.38 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
68
69
70
71
72
73
74
75
76
77
78
# Pin to a specific patch version for reproducible builds.
# To pick up security patches, bump this version and rebuild.
FROM python:3.12.13
RUN apt-get update && apt-get install -y --no-install-recommends \
# Core utilities
coreutils findutils grep sed gawk diffutils patch \
less file tree bc man-db \
# Networking
curl wget net-tools iputils-ping dnsutils netcat-openbsd socat telnet \
openssh-client rsync \
# Editors
vim nano \
# Version control
git \
# Build tools
build-essential cmake make \
# Scripting & languages
perl ruby-full lua5.4 \
# Data processing
jq xmlstarlet sqlite3 \
# Media & documents
ffmpeg pandoc imagemagick texlive-latex-base \
# Compression
zip unzip tar gzip bzip2 xz-utils zstd p7zip-full \
# System
procps htop lsof strace sysstat \
sudo tmux screen tini iptables ipset dnsmasq \
ca-certificates gnupg apt-transport-https \
# Capabilities (needed for setcap on Python binary)
libcap2-bin \
&& rm -rf /var/lib/apt/lists/*
# Node.js (LTS)
RUN curl -fsSL https://deb.nodesource.com/setup_22.x | bash - \
&& apt-get install -y --no-install-recommends nodejs \
&& rm -rf /var/lib/apt/lists/*
# Docker CLI + Compose + Buildx (mount socket at runtime for access)
RUN curl -fsSL https://get.docker.com | sh
# Uncomment to apply security patches beyond what the base image provides.
# Not recommended for reproducible builds; prefer bumping the base image tag.
# RUN apt-get update && apt-get upgrade -y && rm -rf /var/lib/apt/lists/*
WORKDIR /app
RUN pip install --no-cache-dir \
numpy pandas scipy scikit-learn \
matplotlib seaborn plotly \
jupyter ipython \
requests beautifulsoup4 lxml \
sqlalchemy psycopg2-binary \
pyyaml toml jsonlines \
tqdm rich \
openpyxl weasyprint \
python-docx python-pptx pypdf csvkit
COPY . .
# setcap MUST run in the same layer as the Python binary to avoid
# overlay2 copy-up corruption of libpython3.12.so ("file too short").
RUN pip install --no-cache-dir . \
&& setcap cap_setgid+ep $(readlink -f $(which python3))
RUN useradd -m -s /bin/bash user && echo 'user ALL=(ALL) NOPASSWD:ALL' >> /etc/sudoers
USER user
ENV SHELL=/bin/bash
ENV PATH="/home/user/.local/bin:${PATH}"
WORKDIR /home/user
EXPOSE 8000
COPY entrypoint.sh /app/entrypoint.sh
ENTRYPOINT ["/usr/bin/tini", "--", "/app/entrypoint.sh"]
CMD ["run"]