You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
isso/Dockerfile

16 lines
284 B

FROM python:3.6
ARG ISSO_VER=0.10.6
RUN apt-get update && apt-get install -y python-dev \
libffi-dev \
sqlite3 \
openssl \
&& pip install --no-cache "isso==${ISSO_VER}" \
&& rm -rf /tmp/*
EXPOSE 8081
VOLUME /db /config
CMD ["isso", "-c", "/config/isso.conf", "run"]