view service/store/Dockerfile @ 1452:1dd4da407c0b

build and release config Ignore-this: a1a0231a2811ac29f906ca72d85a8c34 darcs-hash:879bbda36c705de169b0b746f5c4de467b48d142
author drewp <drewp@bigasterisk.com>
date Wed, 25 Sep 2019 17:28:38 -0700
parents 1431cd58803d
children a93fbf0d0daa
line wrap: on
line source

FROM bang6:5000/base_x86

WORKDIR /opt

COPY requirements.txt ./
RUN pip install --index-url https://projects.bigasterisk.com/ --extra-index-url https://pypi.org/simple -r requirements.txt

COPY *.py *.html ./

EXPOSE 10015

CMD [ "python", "./store.py" ]