initial commit youdis v1

This commit is contained in:
2025-01-26 16:57:17 -05:00
commit d48de54326
8 changed files with 231 additions and 0 deletions

11
dockerfile Normal file
View File

@@ -0,0 +1,11 @@
# syntax=docker/dockerfile:1
FROM python:3.12.1-alpine3.18
WORKDIR /app
RUN apk update && \
apk add --no-cache build-base ffmpeg && \
rm -rf /var/cache/apk/*
COPY requirements.txt requirements.txt
COPY data.json data.json
RUN python3 -m pip install --no-cache-dir -r requirements.txt
COPY youdis.py youdis.py
CMD ["python3", "youdis.py"]