bbb-status/Dockerfile

10 lines
168 B
Docker
Raw Normal View History

2020-11-25 19:35:39 +01:00
FROM python:3.8
WORKDIR /usr/src/
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
COPY ./src/ ./
CMD [ "python", "./logMeetingData.py" ]