view Dockerfile @ 31:9fd62089fbf3 master

ignore
author drewp@bigasterisk.com
date Sun, 12 Jul 2020 13:35:41 -0700
parents e86642cf7393
children b82432594778
line wrap: on
line source

FROM bang5:5000/base_x86

WORKDIR /opt

RUN DEBIAN_FRONTEND=noninteractive apt-get install -y tzdata

COPY requirements.txt ./

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

COPY *.py run ./
COPY static static/
COPY template template/


CMD [ "./run" ]