8 lines
181 B
Text
8 lines
181 B
Text
|
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" ]
|