mirror of
https://codeberg.org/langfingaz/bbb-status
synced 2024-11-21 20:23:17 +01:00
10 lines
168 B
Docker
10 lines
168 B
Docker
|
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" ]
|