summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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"]