diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..6a98007 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,19 @@ +FROM python:3.13-slim + +WORKDIR /app + +ENV PYTHONUNBUFFERED=1 + +RUN apt-get update && apt-get install -y \ + gcc \ + && rm -rf /var/lib/apt/lists/* + +COPY requirements.txt . + +RUN pip install --no-cache-dir -r requirements.txt + +COPY . . + +EXPOSE 8080 + +CMD ["python", "main.py"] \ No newline at end of file diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..d3a5b69 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,6 @@ +Flask +icalendar +pytz +python-dotenv +APScheduler +requests \ No newline at end of file