Microservice for storing assigned IP addresses in MongoDB
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
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
|
|
|