matrix-bot/Dockerfile
Dorian Zedler 5072af4b0c
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
Feat: add ci and docker conifig
2022-09-29 20:32:54 +02:00

9 lines
No EOL
170 B
Docker

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