-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
68 lines (61 loc) · 1.48 KB
/
Dockerfile
File metadata and controls
68 lines (61 loc) · 1.48 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
FROM node:22-bookworm-slim
LABEL org.opencontainers.image.title="Msty Claw Runtime"
LABEL org.opencontainers.image.description="Default Linux runtime image for Msty Claw container-backed bots."
LABEL org.opencontainers.image.source="https://github.com/cloudstack-llc/msty-claw-container"
LABEL org.opencontainers.image.vendor="Msty"
ENV DEBIAN_FRONTEND=noninteractive
ENV LANG=C.UTF-8
ENV LC_ALL=C.UTF-8
USER root
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
bash \
build-essential \
ca-certificates \
curl \
dnsutils \
fd-find \
file \
git \
gzip \
jq \
less \
libimage-exiftool-perl \
lsof \
make \
nano \
netcat-openbsd \
openssh-client \
p7zip-full \
pandoc \
pkg-config \
poppler-data \
poppler-utils \
procps \
python3 \
python3-bs4 \
python3-docx \
python3-lxml \
python3-openpyxl \
python3-pil \
python3-pip \
python3-pypdf \
python3-venv \
qpdf \
ripgrep \
rsync \
tar \
tesseract-ocr \
tesseract-ocr-eng \
unzip \
vim-tiny \
wget \
xz-utils \
zip \
zsh \
&& ln -sf /usr/bin/fdfind /usr/local/bin/fd \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /workspace
USER root
CMD ["sleep", "infinity"]