diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..e5087a3 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,17 @@ +# Use the official Python image from the Docker Hub +FROM python:3.10.14-slim-bookworm + +# Set the working directory in the container +WORKDIR /app + +# Copy the requirements file into the container +COPY requirements.txt . + +# Install the dependencies +RUN python -m pip install -r requirements.txt + +# Copy the local files into the container +COPY . /app/ + +# Run the application +CMD ["python", "main.py"] \ No newline at end of file