Mercurial > code > home > repos > href
view Dockerfile @ 32:c23acc88324b
client-side loginbar
author | drewp@bigasterisk.com |
---|---|
date | Sat, 21 Aug 2021 14:24:09 -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" ]