pinecrypt-gateway-lease/Dockerfile
Lauri Võsandi 197e4bcbab
All checks were successful
continuous-integration/drone Build is passing
Add Drone configuration
2022-02-09 19:56:14 +02:00

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