From 2f7013ffcf71c21a99ab76fcb600cb6c11135712 Mon Sep 17 00:00:00 2001 From: LittleBit Date: Sat, 13 Dec 2025 01:30:39 -0600 Subject: [PATCH] update python, remove unnecessary EXPOSE directive --- Dockerfile | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index fb2c58b..243e460 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Use an official Python runtime as a parent image -FROM python:3.12-slim +FROM python:3.14-slim # Set the working directory in the container WORKDIR /app @@ -10,8 +10,5 @@ COPY . /app # Install any needed packages specified in requirements.txt RUN pip install --no-cache-dir -r requirements.txt -# Make port 80 available to the world outside this container -EXPOSE 80 - # Run teablewatcher.py when the container launches CMD ["python", "teablewatcher.py"] \ No newline at end of file -- 2.51.2