Reorganizes for 2 docker containers

This commit is contained in:
Patrick McDonagh
2016-10-13 17:18:52 -05:00
parent e374169c71
commit 6dcbcd2846
722 changed files with 173546 additions and 548 deletions

14
daq/Dockerfile Normal file
View File

@@ -0,0 +1,14 @@
FROM python:latest
RUN mkdir /root/tag-logger
COPY taglogger.py /root/tag-logger/taglogger.py
COPY sampleData.py /root/tag-logger/sampleData.py
COPY tag /root/tag-logger/tag
# RUN wget https://bootstrap.pypa.io/get-pip.py
# RUN python get-pip.py
RUN pip install requests
RUN git clone https://github.com/ruscito/pycomm.git && cd pycomm && python setup.py install && cd ..
CMD ["python", "/root/tag-logger/sampleData.py"]