summaryrefslogtreecommitdiffstats
path: root/Dockerfile
blob: af9f467fbcc655650f8618be038b4fea12f58b83 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
FROM fedora
MAINTAINER Christian Heimes

RUN dnf -y update && dnf clean all
RUN dnf -y install dnf-plugins-core python python-flask python-requests && \
    dnf clean all
RUN dnf -y copr enable simo/jwcrypto && \
    dnf -y install python-jwcrypto python-cryptography && \
    dnf clean all

ADD . /custodia_pwmgr

EXPOSE 5000

CMD ["/custodia_pwmgr/run.sh"]