youtube-rss

This commit is contained in:
Bram Kelchtermans
2024-06-06 20:10:43 +02:00
parent f3ec017fa3
commit 89d818fe34
4 changed files with 115 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
# Use an official Python runtime as a parent image
FROM python:3.8-slim
# Set the working directory to /app
WORKDIR /app
# Copy the current directory contents into the container at /app
COPY . /app
# Install any needed packages specified in requirements.txt
RUN pip install --no-cache-dir -r requirements.txt
# Make port 5000 available to the world outside this container
EXPOSE 5000
# Define environment variable
ENV NAME World
# Run app.py when the container launches
CMD [ "python3", "-m" , "flask", "run", "--host=0.0.0.0"]