mirror of
https://github.com/MichaByte/OnBoard-Live.git
synced 2025-12-06 04:13:41 -05:00
13 lines
196 B
Docker
13 lines
196 B
Docker
FROM python:3.12-alpine
|
|
|
|
WORKDIR /usr/src/app
|
|
|
|
RUN apk add --no-cache ffmpeg
|
|
|
|
COPY requirements.txt ./
|
|
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
COPY . .
|
|
|
|
CMD [ "python", "./main.py" ]
|