Dockerize

This commit is contained in:
Markus F.J. Busche
2024-02-03 12:07:26 +01:00
parent 666e9d972d
commit 487931826f
4 changed files with 17 additions and 1 deletions

7
Dockerfile Normal file
View File

@@ -0,0 +1,7 @@
FROM alpine:latest
RUN apk update
RUN apk add py-pip
RUN apk add --no-cache python3-dev net-snmp-tools py3-flask
WORKDIR /app
COPY . /app
CMD ["python3", "app.py"]