diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..e7e09fe --- /dev/null +++ b/Dockerfile @@ -0,0 +1,18 @@ +# Use an official Python runtime as a parent image +FROM python:3.13-slim + +# Set the working directory in the container +WORKDIR /app + +# Copy the current directory contents into the container at /app +COPY . /app + +# Install any needed dependencies specified in requirements.txt +RUN pip install --no-cache-dir atproto schedule + +# Make port 8080 available to the world outside this container +EXPOSE 8080 + +# Run app.py when the container launches +CMD ["python3", "sched.py"] +