bbb-status/Dockerfile
2020-11-28 21:11:21 +01:00

13 lines
315 B
Docker

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