diff options
| author | unitexe <unitexe70@gmail.com> | 2026-01-04 12:52:50 -0600 |
|---|---|---|
| committer | unitexe <unitexe70@gmail.com> | 2026-01-04 12:52:50 -0600 |
| commit | 74ed0e88ea1acfc88fc267dab8c30177119c1869 (patch) | |
| tree | 9b0d5a7d5439cbc63aa2a35ebde5d64a060bf9c3 /Containerfile | |
| parent | b70976e4e40a3b5332cc713c5d1db595930a6266 (diff) | |
Add container file for python script
Diffstat (limited to 'Containerfile')
| -rw-r--r-- | Containerfile | 11 |
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"] |
