10 lines
358 B
Docker
10 lines
358 B
Docker
|
FROM debian:jessie
|
||
|
MAINTAINER yohan <783b8c87@scimetis.net>
|
||
|
ENV DEBIAN_FRONTEND noninteractive
|
||
|
#RUN echo "deb http://http.debian.net/debian jessie-backports main" >> /etc/apt/sources.list
|
||
|
RUN apt-get update && apt-get -y install feed2imap
|
||
|
#COPY feed2imaprc /root/
|
||
|
COPY entrypoint.sh /root/
|
||
|
RUN chmod +x /root/entrypoint.sh
|
||
|
ENTRYPOINT ["/root/entrypoint.sh"]
|