1
0
mirror of https://github.com/Adam-Ant/QuotesDB synced 2024-07-06 05:26:10 +00:00
QuotesDB/Dockerfile

15 lines
377 B
Docker
Raw Permalink Normal View History

2017-10-05 22:11:15 +00:00
FROM alpine:3.6
MAINTAINER Adam Dodman <"adam.dodman@gmx.com">
2017-10-20 17:07:11 +00:00
COPY . /quotedb/
2017-10-05 22:11:15 +00:00
2017-10-20 20:28:55 +00:00
RUN apk add --no-cache python3 py3-pip tini gcc python3-dev libc-dev ca-certificates libffi-dev \
2017-10-05 22:11:15 +00:00
&& 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"]