Add minor commenting

This commit is contained in:
Michael Pivato
2019-03-01 15:44:06 +10:30
parent 1e76b4ad12
commit 0b04588161

View File

@@ -1,6 +1,7 @@
FROM python:3.6-slim
RUN apt-get update
# OpenCV has a LOT of dependencies.
RUN apt-get install -y \
libglib2.0-0 \
libsm6 \
@@ -23,7 +24,7 @@ WORKDIR /app
COPY . /app
# We aren't listening, just connecting, so probs won't need this.
EXPOSE 1883
# EXPOSE 1883
ENV PYTHONPATH=/app
CMD ["python", "DecisionSystem/CentralisedDecision/cameraserver.py", "-V", "/app/HandRecognitionMacbookFixed.mp4"]