-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
18 lines (16 loc) · 925 Bytes
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
FROM python:3-alpine
ARG BIN_VERSION=<unknown>
RUN mkdir /app
COPY ./*.py ./requirements.txt /app/
RUN pip install --no-cache-dir -r /app/requirements.txt
ENTRYPOINT ["python", "/app/feedbin_archiver.py"]
LABEL license="MIT"
LABEL maintainer="Chris Dzombak <https://www.dzombak.com>"
LABEL org.opencontainers.image.authors="Chris Dzombak <https://www.dzombak.com>"
LABEL org.opencontainers.image.url="https://github.com/cdzombak/feedbin-auto-archiver"
LABEL org.opencontainers.image.documentation="https://github.com/cdzombak/feedbin-auto-archiver/blob/main/README.md"
LABEL org.opencontainers.image.source="https://github.com/cdzombak/feedbin-auto-archiver.git"
LABEL org.opencontainers.image.version="${BIN_VERSION}"
LABEL org.opencontainers.image.licenses="MIT"
LABEL org.opencontainers.image.title="feedbin-auto-archiver"
LABEL org.opencontainers.image.description="Automatically archive old unread entries in Feedbin"