mirror of
https://github.com/hoellen/dockerfiles.git
synced 2025-07-02 23:25:41 +00:00
UNMAINTAINED
This commit is contained in:
37
unmaintained/isso/Dockerfile
Normal file
37
unmaintained/isso/Dockerfile
Normal file
@ -0,0 +1,37 @@
|
||||
FROM alpine:3.6
|
||||
|
||||
ARG ISSO_VER=0.10.6
|
||||
|
||||
ENV GID=1000 UID=1000
|
||||
|
||||
RUN apk -U upgrade \
|
||||
&& apk add -t build-dependencies \
|
||||
python-dev \
|
||||
libffi-dev \
|
||||
py2-pip \
|
||||
build-base \
|
||||
&& apk add \
|
||||
python \
|
||||
py-setuptools \
|
||||
sqlite \
|
||||
libressl \
|
||||
ca-certificates \
|
||||
su-exec \
|
||||
tini \
|
||||
&& pip install --no-cache cffi \
|
||||
&& pip install --no-cache misaka==1.0.2 \
|
||||
&& pip install --no-cache "isso==${ISSO_VER}" \
|
||||
&& apk del build-dependencies \
|
||||
&& rm -rf /tmp/* /var/cache/apk/*
|
||||
|
||||
COPY run.sh /usr/local/bin/run.sh
|
||||
|
||||
RUN chmod +x /usr/local/bin/run.sh
|
||||
|
||||
EXPOSE 8080
|
||||
|
||||
VOLUME /db /config
|
||||
|
||||
LABEL maintainer="Wonderfall <wonderfall@targaryen.house>"
|
||||
|
||||
CMD ["run.sh"]
|
Reference in New Issue
Block a user