Get full text RSS feeds
https://morss.it/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
386 B
16 lines
386 B
FROM alpine:edge |
|
|
|
ADD . /app |
|
|
|
RUN set -ex; \ |
|
apk add --no-cache --virtual .run-deps python3 py3-lxml py3-setproctitle py3-setuptools; \ |
|
apk add --no-cache --virtual .build-deps py3-pip py3-wheel; \ |
|
pip3 install --no-cache-dir /app[full]; \ |
|
apk del .build-deps |
|
|
|
USER 1000:1000 |
|
|
|
ENTRYPOINT ["/bin/sh", "/app/morss-helper"] |
|
CMD ["run"] |
|
|
|
HEALTHCHECK CMD /bin/sh /app/morss-helper check
|
|
|