zpaste/Dockerfile

16 lines
267 B
Docker
Raw Normal View History

2019-01-28 22:23:35 -08:00
FROM ubuntu:bionic
ADD . /tmp/code/
RUN apt-get update && \
apt-get install -y python3-pip
RUN pip3 install -U pip && \
cd /tmp/code && \
python3 setup.py install && \
useradd --uid 1000 app
VOLUME /data/
ENTRYPOINT ["wastebind", "-d", "/data/"]