mirror of
https://gitlab.com/chaica/feed2toot.git
synced 2025-02-23 16:38:41 +00:00
15 lines
258 B
Docker
15 lines
258 B
Docker
|
FROM python:3.9
|
||
|
LABEL maintainer="Strubbl-dockerfile@linux4tw.de"
|
||
|
|
||
|
ENV DATA_DIR /data
|
||
|
COPY . feed2toot
|
||
|
RUN \
|
||
|
mkdir $DATA_DIR \
|
||
|
&& cd feed2toot \
|
||
|
&& python setup.py install
|
||
|
|
||
|
VOLUME $DATA_DIR
|
||
|
WORKDIR $DATA_DIR
|
||
|
CMD ["feed2toot", "-c", "./feed2toot.ini"]
|
||
|
|