9 lines
262 B
Docker
9 lines
262 B
Docker
FROM debian:bookworm
|
|
MAINTAINER yohan <783b8c87@scimetis.net>
|
|
ENV DEBIAN_FRONTEND noninteractive
|
|
ENV TZ Europe/Paris
|
|
RUN apt-get update && apt-get -y install feed2imap
|
|
COPY entrypoint.sh /root/
|
|
RUN chmod +x /root/entrypoint.sh
|
|
ENTRYPOINT ["/root/entrypoint.sh"]
|