mirror of
https://github.com/Adam-Ant/QuotesDB
synced 2024-11-05 10:56:22 +00:00
15 lines
360 B
Docker
15 lines
360 B
Docker
|
FROM alpine:3.6
|
||
|
|
||
|
MAINTAINER Adam Dodman <"adam.dodman@gmx.com">
|
||
|
|
||
|
ADD * /quotedb/
|
||
|
|
||
|
RUN apk add --no-cache python3 py3-pip tini gcc python3-dev libc-dev libffi-dev \
|
||
|
&& pip3 install -r /quotedb/requirements.txt \
|
||
|
&& ln -s /quotedb/adduser.py /usr/bin/quote-adduser
|
||
|
|
||
|
|
||
|
VOLUME ["/config"]
|
||
|
|
||
|
CMD ["/sbin/tini","--","python3","-u","/quotedb/main.py","-c","/config"]
|