update iptv filter
Build and Push Docker Images / build-and-push (push) Successful in 34s

This commit is contained in:
2025-04-16 21:26:20 +02:00
parent 0d43176adf
commit 6d8b4c000a
9 changed files with 93 additions and 90 deletions
+11 -5
View File
@@ -1,7 +1,13 @@
FROM php:7.2-apache
FROM python:3.9-slim
COPY . /var/www/html
COPY vhost.conf /etc/apache2/sites-available/000-default.conf
WORKDIR /app
EXPOSE 80
RUN chown -R www-data:www-data /var/www/html && a2enmod rewrite
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY main.py .
COPY version .
EXPOSE 8000
CMD ["python", "main.py"]