Feat: add ci and docker conifig
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed

This commit is contained in:
Dorian Zedler 2022-09-29 20:32:54 +02:00
parent fdc2fb9b30
commit 5072af4b0c
Signed by: dozedler
GPG key ID: 989DE36109AFA354
4 changed files with 19 additions and 3 deletions

View file

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