Mercurial > code > home > repos > homeauto
view service/store/Dockerfile @ 411:9fbd2d0193bf
new 'store' service for user inputs
Ignore-this: 7b14beca506dd7f1e38b5214aae1833a
author | drewp@bigasterisk.com |
---|---|
date | Sat, 16 Mar 2019 18:22:57 -0700 |
parents | |
children | 4c68b604c7ec |
line wrap: on
line source
FROM bang6:5000/base_x86 WORKDIR /opt COPY requirements.txt ./ RUN pip install -r requirements.txt COPY *.py *.html ./ EXPOSE 11014 CMD [ "python", "./store.py" ]