bbb-status/Dockerfile

13 lines
315 B
Docker
Raw Normal View History

FROM python:3.8-alpine
2020-11-25 19:35:39 +01:00
WORKDIR /usr/src/
COPY requirements.txt ./
RUN pip3 install --no-cache-dir -r requirements.txt
2020-11-25 19:35:39 +01:00
COPY ./src/ ./
2020-11-28 21:11:21 +01:00
RUN chmod +x ./langfingaz/logMeetingData.py
2020-11-25 19:35:39 +01:00
# unbuffered output option otherwise script sleeps before any output appears
2020-11-28 21:11:21 +01:00
CMD [ "python", "-u", "./langfingaz/logMeetingData.py" ]