Chore: some initial draft

This commit is contained in:
Dorian Zedler 2022-09-28 20:04:21 +02:00
parent 50b1feecfe
commit 77af9a9428
Signed by: dozedler
GPG key ID: 989DE36109AFA354
8 changed files with 361 additions and 0 deletions

8
Dockerfile Normal file
View file

@ -0,0 +1,8 @@
FROM python:3-alpine
RUN apk --no-cache add build-base openldap-dev python2-dev python3-dev
RUN pip3 install -r requirements.txt
COPY src/* ./
ENTRYPOINT [ "python3", "main.py" ]