Mercurial > code > home > repos > href
view Dockerfile @ 33:b82432594778
skaffold config and other updates
author | drewp@bigasterisk.com |
---|---|
date | Sat, 21 Aug 2021 14:24:57 -0700 |
parents | e86642cf7393 |
children | 7ed47f59f22a |
line wrap: on
line source
FROM bang5:5000/base_basic WORKDIR /opt COPY requirements.txt ./ RUN pip3 install --index-url https://projects.bigasterisk.com/ --extra-index-url https://pypi.org/simple -r requirements.txt COPY *.py ./ COPY static static/ COPY template template/ CMD [ "python3", "lookup.py" ]