-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
190 lines (183 loc) · 5.84 KB
/
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
181
182
183
184
185
186
187
188
189
190
ARG BUILD_FROM=ghcr.io/hassio-addons/base/amd64:9.1.7
# hadolint ignore=DL3006
FROM ${BUILD_FROM}
# Environment variables
ENV \
PATH="/usr/local/bin:$PATH" \
GPG_KEY="E3FF2839C048B25C084DEBE9B26995E310250568" \
PYTHON_VERSION="3.8.7" \
PYTHON_PIP_VERSION="21.0.1"
# Set shell
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
# Install base system
# hadolint ignore=DL3003,SC2155
RUN \
apk add --no-cache --virtual .build-dependencies \
bzip2-dev=1.0.8-r1 \
coreutils=8.32-r2 \
dpkg-dev=1.20.6-r0 \
dpkg=1.20.6-r0 \
expat-dev=2.2.10-r1 \
findutils=4.8.0-r0 \
gcc=10.2.1_pre1-r3 \
gdbm-dev=1.19-r0 \
gnupg=2.2.27-r0 \
libc-dev=0.7.2-r3 \
libffi-dev=3.3-r2 \
libnsl-dev=1.3.0-r0 \
libtirpc-dev=1.3.1-r0 \
linux-headers=5.7.8-r0 \
make=4.3-r0 \
ncurses-dev=6.2_p20210109-r0 \
openssl-dev=1.1.1k-r0 \
pax-utils=1.2.8-r0 \
readline-dev=8.1.0-r0 \
sqlite-dev=3.34.1-r0 \
tar=1.34-r0 \
tcl-dev=8.6.10-r1 \
tk-dev=8.6.10-r1 \
tk=8.6.10-r1 \
util-linux-dev=2.36.1-r1 \
xz-dev=5.2.5-r0 \
xz=5.2.5-r0 \
zlib-dev=1.2.11-r3 \
libressl-dev \
postgresql-dev \
libffi-dev \
gcc \
musl-dev \
python3-dev \
git \
nodejs \
npm \
nano \
wget \
curl \
net-tools \
unzip \
supervisor
screen\
\
&& curl -J -L -o /tmp/python.tar.xz \
"https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz" \
&& curl -J -L -o /tmp/python.tar.xz.asc \
"https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz.asc" \
\
&& export GNUPGHOME="$(mktemp -d)" \
&& gpg \
--batch \
--keyserver ha.pool.sks-keyservers.net \
--recv-keys "$GPG_KEY" \
&& gpg \
--batch \
--verify /tmp/python.tar.xz.asc /tmp/python.tar.xz \
&& { command -v gpgconf > /dev/null && gpgconf --kill all || :; } \
\
&& mkdir -p /usr/src/python \
&& tar -xJC /usr/src/python --strip-components=1 -f /tmp/python.tar.xz \
&& cd /usr/src/python \
\
&& gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)" \
&& ./configure \
--build="$gnuArch" \
--enable-loadable-sqlite-extensions \
--enable-optimizations \
--enable-option-checking=fatal \
--enable-shared \
--with-system-expat \
--with-system-ffi \
--without-ensurepip \
\
&& make -j "$(nproc)" \
EXTRA_CFLAGS="-DTHREAD_STACK_SIZE=0x100000" \
&& make install \
\
&& find /usr/local \
-type f \
-executable \
-not \( -name '*tkinter*' \) \
-exec scanelf \
--needed \
--nobanner \
--format '%n#p' '{}' ';' \
| tr ',' '\n' \
| sort -u \
| awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' \
| xargs -rt apk add --no-cache --virtual .python-rundeps \
\
&& find /usr/local -depth \
\( \
\( -type d -a \( -name test -o -name tests \) \) \
-o \
\( -type f -a \( -name '*.pyc' -o -name '*.pyo' \) \) \
\) -exec rm -rf '{}' + \
\
&& cd /usr/local/bin \
&& ln -s idle3 idle \
&& ln -s pydoc3 pydoc \
&& ln -s python3 python \
&& ln -s python3-config python-config \
\
&& curl -J -L -o /tmp/get-pip.py \
'https://bootstrap.pypa.io/get-pip.py' \
\
&& python /tmp/get-pip.py \
--disable-pip-version-check \
--no-cache-dir \
"pip==$PYTHON_PIP_VERSION" \
\
&& find /usr/local -depth \
\( \
\( -type d -a \( -name test -o -name tests \) \) \
-o \
\( -type f -a \( -name '*.pyc' -o -name '*.pyo' \) \) \
\) -exec rm -rf '{}' + \
\
&& apk del --no-cache --purge .build-dependencies \
&& rm -f -r \
/usr/src \
"$GNUPGHOME" \
/tmp/* \
\
&& python3 --version \
&& pip3 --version
RUN python3 -m pip install pip==9.0.3
RUN pip install wheel setuptools
RUN pip install aniso8601==1.2.0
RUN pip install Flask==1.1.1
RUN pip install pytube
RUN pip install cryptography==2.1.4
RUN pip install PyYAML==3.12
RUN pip install six==1.11.0
RUN pip install Werkzeug==0.16.1
RUN pip install youtube_dl
RUN pip install git+https://github.com/unofficial-skills/flask-ask-alpha-video.git
RUN pip install pygtail
RUN pip install pyfiglet
RUN npm install -g localtunnel
# Entrypoint & CMD
ENTRYPOINT ["/init"]
# Build arugments
ARG BUILD_DATE
ARG BUILD_REF
ARG BUILD_VERSION
ARG BUILD_REPOSITORY
# Labels
LABEL \
io.hass.name="Addon Python base for ${BUILD_ARCH}" \
io.hass.description="Home Assistant Community Add-on: ${BUILD_ARCH} Python base image" \
io.hass.arch="${BUILD_ARCH}" \
io.hass.type="base" \
io.hass.version=${BUILD_VERSION} \
maintainer="Franck Nijhof <[email protected]>" \
org.opencontainers.image.title="Addon Python base for ${BUILD_ARCH}" \
org.opencontainers.image.description="Home Assistant Community Add-on: ${BUILD_ARCH} Python base image" \
org.opencontainers.image.vendor="Home Assistant Community Add-ons" \
org.opencontainers.image.authors="Franck Nijhof <[email protected]>" \
org.opencontainers.image.licenses="MIT" \
org.opencontainers.image.url="https://addons.community" \
org.opencontainers.image.source="https://github.com/${BUILD_REPOSITORY}" \
org.opencontainers.image.documentation="https://github.com/${BUILD_REPOSITORY}/blob/master/README.md" \
org.opencontainers.image.created=${BUILD_DATE} \
org.opencontainers.image.revision=${BUILD_REF} \
org.opencontainers.image.version=${BUILD_VERSION}