diff options
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"] |
