comparison 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
comparison
equal deleted inserted replaced
410:a60155ded95f 411:9fbd2d0193bf
1 FROM bang6:5000/base_x86
2
3 WORKDIR /opt
4
5 COPY requirements.txt ./
6 RUN pip install -r requirements.txt
7
8 COPY *.py *.html ./
9
10 EXPOSE 11014
11
12 CMD [ "python", "./store.py" ]