pinecrypt-gateway-lease/Dockerfile

7 lines
202 B
Docker
Raw Normal View History

2022-02-09 17:55:42 +00:00
FROM python:alpine
RUN apk add --no-cache gcc make musl-dev linux-headers
2021-06-02 12:36:59 +00:00
RUN pip install motor sanic sanic-prometheus sanic_wtf
2022-02-09 17:55:42 +00:00
RUN apk del gcc make musl-dev linux-headers
2021-06-02 12:36:59 +00:00
ADD lease.py /
CMD /lease.py