diff options
| author | Mistivia <i@mistivia.com> | 2025-10-28 17:13:04 +0800 |
|---|---|---|
| committer | Mistivia <i@mistivia.com> | 2025-10-28 17:13:04 +0800 |
| commit | 200f7dbd0c9eb98d6621634a4c597b732c2f1d55 (patch) | |
| tree | d90546310dda7dd66ea2a02895777262f1e2071a /Dockerfile | |
init
Diffstat (limited to 'Dockerfile')
| -rw-r--r-- | Dockerfile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..d7e3c26 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,11 @@ +FROM alpine:3.18 + +WORKDIR /app + +RUN apk add --no-cache \ + python3 \ + py3-pip \ + ca-certificates +COPY requirements.txt . +RUN pip install --no-cache-dir -r requirements.txt +CMD ["python3", "main.py"] |
