pinecrypt-gateway-lease/Dockerfile

7 lines
202 B
Docker

FROM python:alpine
RUN apk add --no-cache gcc make musl-dev linux-headers
RUN pip install motor sanic sanic-prometheus sanic_wtf
RUN apk del gcc make musl-dev linux-headers
ADD lease.py /
CMD /lease.py