From 74ed0e88ea1acfc88fc267dab8c30177119c1869 Mon Sep 17 00:00:00 2001 From: unitexe Date: Sun, 4 Jan 2026 12:52:50 -0600 Subject: Add container file for python script --- Containerfile | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 Containerfile diff --git a/Containerfile b/Containerfile new file mode 100644 index 0000000..b4b255a --- /dev/null +++ b/Containerfile @@ -0,0 +1,11 @@ +FROM python:3.13.9-alpine + +WORKDIR /app + +COPY banner.py . + +RUN chmod +x banner.py + +EXPOSE 8080 + +CMD ["python3", "banner.py"] -- cgit v1.2.3