summaryrefslogtreecommitdiff
path: root/Containerfile
diff options
context:
space:
mode:
authorunitexe <unitexe70@gmail.com>2026-01-04 12:52:50 -0600
committerunitexe <unitexe70@gmail.com>2026-01-04 12:52:50 -0600
commit74ed0e88ea1acfc88fc267dab8c30177119c1869 (patch)
tree9b0d5a7d5439cbc63aa2a35ebde5d64a060bf9c3 /Containerfile
parentb70976e4e40a3b5332cc713c5d1db595930a6266 (diff)
Add container file for python script
Diffstat (limited to 'Containerfile')
-rw-r--r--Containerfile11
1 files changed, 11 insertions, 0 deletions
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"]