move pipeline to github native, remove redundant dockerfiles, and add helper actions
This commit is contained in:
parent
f5aa55a1db
commit
eeb0198e3d
6 changed files with 186 additions and 48 deletions
15
Dockerfile
15
Dockerfile
|
|
@ -1,6 +1,15 @@
|
|||
FROM amd64/python:3.7.3-alpine
|
||||
FROM python:3.9.1-alpine
|
||||
|
||||
LABEL maintainers="dirtycajunrice,samwiseg0"
|
||||
LABEL maintainer="dirtycajunrice,samwiseg0" \
|
||||
org.opencontainers.image.created=$BUILD_DATE \
|
||||
org.opencontainers.image.url="https://github.com/Boerderij/Varken" \
|
||||
org.opencontainers.image.source="https://github.com/Boerderij/Varken" \
|
||||
org.opencontainers.image.version=$VERSION \
|
||||
org.opencontainers.image.revision=$VCS_REF \
|
||||
org.opencontainers.image.vendor="boerderij" \
|
||||
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"
|
||||
|
||||
ENV DEBUG="True"
|
||||
|
||||
|
|
@ -20,5 +29,3 @@ RUN apk add --no-cache tzdata && \
|
|||
pip install --no-cache-dir -r /app/requirements.txt
|
||||
|
||||
CMD cp /app/data/varken.example.ini /config/varken.example.ini && python3 /app/Varken.py
|
||||
|
||||
VOLUME /config
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue