ldap-python-webui/Dockerfile

27 lines
536 B
Docker
Raw Normal View History

2023-04-17 05:26:22 +02:00
# FROM alpine:3.14
FROM python:3-alpine
#RUN apk add --no-cache bash build-base uwsgi python3-dev
RUN apk add --no-cache --upgrade bash
RUN mkdir -p /www
WORKDIR /www
COPY . .
RUN cp settings.ini.example settings.ini
RUN chmod +x start.sh
RUN set -e; \
apk add --no-cache --virtual .build-deps \
gcc \
libc-dev \
linux-headers \
; \
pip install -r requirements.txt; \
apk del .build-deps;
#ENV LDAP_ADMIN_PASSWORD="admin"
#ENV LDAP_READONLY_PASSWORD="readonly"
EXPOSE 80 8080
#CMD ["./start.sh"]
ENTRYPOINT ["./start.sh"]