Added Docker files, and removed RTMP server additions, added NGinx files (didn't added source NGinx files, docker will add them)

This commit is contained in:
2025-01-20 00:14:13 +00:00
parent b8624c94a1
commit 76991f0b39
8 changed files with 80 additions and 162 deletions

17
core/Dockerfile Normal file
View File

@@ -0,0 +1,17 @@
FROM python:3.10
# Set working directory
WORKDIR /core
# Install dependencies
COPY requirements.txt requirements.txt
RUN pip install --no-cache-dir -r requirements.txt
# Copy application code
COPY . .
# Expose Flask's port
EXPOSE 5000
# Start the Flask app
CMD ["python", "app.py"]