forked from Boerderij/Varken
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Dockerfile
40 lines (32 loc) · 1.3 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
FROM python:3.10.5-alpine
ENV DEBUG="True" \
DATA_FOLDER="/config" \
VERSION="0.0.0" \
BRANCH="edge" \
BUILD_DATE="1/1/1970" \
APP_DIR="/app" \
CONFIG_DIR="/config" \
PUID="1000" \
PGID="1000" \
UMASK="002" \
TZ="Etc/UTC"
LABEL maintainer="thezak48" \
org.opencontainers.image.created=$BUILD_DATE \
org.opencontainers.image.url="https://github.com/thezak48/Varken" \
org.opencontainers.image.source="https://github.com/thezak48/Varken" \
org.opencontainers.image.version=$VERSION \
org.opencontainers.image.revision=$VCS_REF \
org.opencontainers.image.vendor="thezak48" \
org.opencontainers.image.title="varken" \
org.opencontainers.image.description="Varken is a standalone application to aggregate data from the Plex ecosystem into InfluxDB using Grafana for a frontend" \
org.opencontainers.image.licenses="MIT"
RUN mkdir "${APP_DIR}" && \
mkdir "${CONFIG_DIR}" && \
adduser -u 1000 -G users varken -D -h "${CONFIG_DIR}"
COPY . ${APP_DIR}
WORKDIR ${APP_DIR}
RUN \
apk add --no-cache tzdata \
&& pip install --no-cache-dir -r ${APP_DIR}/requirements.txt \
&& sed -i "s/0.0.0/${VERSION}/;s/develop/${BRANCH}/;s/1\/1\/1970/${BUILD_DATE//\//\\/}/" varken/__init__.py
CMD cp ${APP_DIR}/data/varken.example.ini ${CONFIG_DIR}/varken.example.ini && python3 ${APP_DIR}/Varken.py