Newer
Older
ldap-passwd-webui / Dockerfile
@Maxim Zalysin Maxim Zalysin on 30 Aug 2017 168 bytes Changes in Dockerfile
FROM python:3.6-alpine3.6

WORKDIR /opt/ldap-passwd-webui

COPY . .

RUN pip install -r requirements.txt

ENTRYPOINT ["waitress-serve", "app:application"]

EXPOSE 8080