generated from jim60105/Containerfile-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnuitka.Dockerfile
180 lines (147 loc) · 6.58 KB
/
nuitka.Dockerfile
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
# syntax=docker/dockerfile:1
ARG UID=1001
ARG VERSION=EDGE
ARG RELEASE=0
######
# Build stage
######
FROM python:3.10-slim as build
# RUN mount cache for multi-arch: https://github.com/docker/buildx/issues/549#issuecomment-1788297892
ARG TARGETARCH
ARG TARGETVARIANT
WORKDIR /source
# Install build dependencies
RUN --mount=type=cache,id=apt-$TARGETARCH$TARGETVARIANT,sharing=locked,target=/var/cache/apt \
--mount=type=cache,id=aptlists-$TARGETARCH$TARGETVARIANT,sharing=locked,target=/var/lib/apt/lists \
apt-get update && apt-get install -y --no-install-recommends \
# https://pillow.readthedocs.io/en/stable/installation/building-from-source.html
libjpeg62-turbo-dev libwebp-dev zlib1g-dev \
build-essential
# Install under /root/.local
ENV PIP_USER="true"
ARG PIP_NO_WARN_SCRIPT_LOCATION=0
ARG PIP_ROOT_USER_ACTION="ignore"
ARG PIP_NO_COMPILE="true"
ARG PIP_DISABLE_PIP_VERSION_CHECK="true"
# Install requirements
RUN --mount=type=cache,id=pip-$TARGETARCH$TARGETVARIANT,sharing=locked,target=/root/.cache/pip \
--mount=source=sd-webui-infinite-image-browsing/requirements.txt,target=requirements.txt,rw \
pip install -U --force-reinstall pip setuptools wheel && \
pip install -r requirements.txt
# Replace pillow with pillow-simd (Only for x86)
ARG TARGETPLATFORM
RUN --mount=type=cache,id=pip-$TARGETARCH$TARGETVARIANT,sharing=locked,target=/root/.cache/pip \
if [ "$TARGETPLATFORM" = "linux/amd64" ]; then \
pip uninstall -y pillow && \
CC="cc -mavx2" pip install -U --force-reinstall pillow-simd; \
fi
# Cleanup
RUN find "/root/.local" -name '*.pyc' -print0 | xargs -0 rm -f || true ; \
find "/root/.local" -type d -name '__pycache__' -print0 | xargs -0 rm -rf || true ;
######
# Compile with Nuitka
######
FROM build as compile
ARG TARGETARCH
ARG TARGETVARIANT
# https://nuitka.net/user-documentation/tips.html#control-where-caches-live
ENV NUITKA_CACHE_DIR_CCACHE=/cache
ENV NUITKA_CACHE_DIR_DOWNLOADS=/cache
ENV NUITKA_CACHE_DIR_CLCACHE=/cache
ENV NUITKA_CACHE_DIR_BYTECODE=/cache
ENV NUITKA_CACHE_DIR_DLL_DEPENDENCIES=/cache
# Install build dependencies for Nuitka
RUN --mount=type=cache,id=apt-$TARGETARCH$TARGETVARIANT,sharing=locked,target=/var/cache/apt \
--mount=type=cache,id=aptlists-$TARGETARCH$TARGETVARIANT,sharing=locked,target=/var/lib/apt/lists \
echo 'deb http://deb.debian.org/debian bookworm-backports main' > /etc/apt/sources.list.d/backports.list && \
apt-get update && apt-get install -y --no-install-recommends \
build-essential \
patchelf ccache clang upx-ucl
# Install Nuitka
RUN --mount=type=cache,id=pip-$TARGETARCH$TARGETVARIANT,sharing=locked,target=/root/.cache/pip \
pip install nuitka
# Compile with nuitka
RUN --mount=type=cache,id=nuitka-$TARGETARCH$TARGETVARIANT,target=/cache \
--mount=source=sd-webui-infinite-image-browsing,target=.,rw \
python3 -m nuitka \
--python-flag=nosite,-O \
--clang \
--lto=no \
--include-data-dir=vue/dist=vue/dist \
--output-dir=/ \
--report=/compilationreport.xml \
--standalone \
--deployment \
--remove-output \
app.py
######
# Report stage
######
FROM scratch AS report
ARG UID
COPY --link --chown=$UID:0 --chmod=775 --from=compile /compilationreport.xml /
######
# Final stage
######
FROM debian:bookworm-slim as final
# Install runtime dependencies
RUN --mount=type=cache,id=apt-$TARGETARCH$TARGETVARIANT,sharing=locked,target=/var/cache/apt \
--mount=type=cache,id=aptlists-$TARGETARCH$TARGETVARIANT,sharing=locked,target=/var/lib/apt/lists \
apt-get update && apt-get install -y --no-install-recommends \
# https://pillow.readthedocs.io/en/stable/installation/building-from-source.html
libjpeg62-turbo-dev libwebp-dev zlib1g-dev \
libxcb1 dumb-init
# ffmpeg
COPY --link --from=mwader/static-ffmpeg:7.0-1 /ffmpeg /usr/local/bin/
# COPY --link --from=mwader/static-ffmpeg:7.0-1 /ffprobe /usr/local/bin/
# Create directories with correct permissions
ARG UID
RUN install -d -m 775 -o $UID -g 0 /outputs && \
install -d -m 775 -o $UID -g 0 /licenses && \
install -d -m 775 -o $UID -g 0 /app
# Copy licenses (OpenShift Policy)
COPY --link --chown=$UID:0 --chmod=775 LICENSE /licenses/Dockerfile.LICENSE
COPY --link --chown=$UID:0 --chmod=775 sd-webui-infinite-image-browsing/LICENSE /licenses/sd-webui-infinite-image-browsing.LICENSE
# Copy dependencies and code (and support arbitrary uid for OpenShift best practice)
COPY --link --chown=$UID:0 --chmod=775 --from=compile /app.dist /app
# Create config files
COPY --link --chown=$UID:0 --chmod=775 <<EOF /app/.env
IIB_ACCESS_CONTROL=enable
IIB_ACCESS_CONTROL_ALLOWED_PATHS=txt2img,img2img,extra,save
IIB_ACCESS_CONTROL_PERMISSION=read-only
EOF
COPY --link --chown=$UID:0 --chmod=775 <<EOF /app/config.json
{
"outdir_txt2img_samples": "/outputs/txt2img",
"outdir_img2img_samples": "/outputs/img2img",
"outdir_extras_samples": "/outputs/extras",
"outdir_txt2img_grids": "/outputs/txt2img-grids",
"outdir_img2img_grids": "/outputs/img2img-grids",
"outdir_save": "/outputs/saved"
}
EOF
ENV PATH="/app:$PATH"
# Remove these to prevent the container from executing arbitrary commands
RUN rm /bin/echo /bin/ln /bin/rm /bin/sh /bin/bash /usr/bin/apt-get
WORKDIR /app
VOLUME [ "/outputs", "/tmp" ]
EXPOSE 8080
USER $UID
STOPSIGNAL SIGINT
# Use dumb-init as PID 1 to handle signals properly
ENTRYPOINT ["dumb-init", "--", "/app/app.bin", "--host", "0.0.0.0", "--port", "8080", "--sd_webui_config", "/app/config.json"]
ARG VERSION
ARG RELEASE
LABEL name="jim60105/docker-infinite-image-browsing" \
# Authors for infinite-image-browsing
vendor="zanllp" \
# Maintainer for this docker image
maintainer="jim60105" \
# Dockerfile source repository
url="https://github.com/jim60105/docker-infinite-image-browsing" \
version=${VERSION} \
# This should be a number, incremented with each change
release=${RELEASE} \
io.k8s.display-name="infinite-image-browsing" \
summary="Stable Diffusion webui Infinite Image Browsing: About A fast and powerful image/video browser for Stable Diffusion webui / ComfyUI / Fooocus, featuring infinite scrolling and advanced search capabilities using image parameters. It also supports standalone operation." \
description="It's not just an image browser, but also a powerful image manager. Precise image search combined with multi-selection operations allows for filtering/archiving/packaging, greatly increasing efficiency. It also supports running in standalone mode, without the need for SD-Webui. For more information about this tool, please visit the following website: https://github.com/zanllp/sd-webui-infinite-image-browsing."