docker-feed2imap/Dockerfile

9 lines
262 B
Docker
Raw Normal View History

2024-07-21 18:19:00 +00:00
FROM debian:bookworm
2019-07-15 20:03:39 +00:00
MAINTAINER yohan <783b8c87@scimetis.net>
ENV DEBIAN_FRONTEND noninteractive
2024-07-21 18:19:00 +00:00
ENV TZ Europe/Paris
2019-07-15 20:03:39 +00:00
RUN apt-get update && apt-get -y install feed2imap
COPY entrypoint.sh /root/
RUN chmod +x /root/entrypoint.sh
ENTRYPOINT ["/root/entrypoint.sh"]