move pipeline to github native, remove redundant dockerfiles, and add helper actions

This commit is contained in:
Nicholas St. Germain 2020-12-21 10:35:01 -06:00
parent f5aa55a1db
commit eeb0198e3d
No known key found for this signature in database
GPG key ID: 7221152119DAB1E6
6 changed files with 186 additions and 48 deletions

View file

@ -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