Add dockerfile & makefile

This commit is contained in:
Yann Verry 2021-05-29 23:14:26 +02:00
parent 9ca2319662
commit 9af0739d80
Signed by: yann
GPG key ID: 19754E8692B8416C
5 changed files with 94 additions and 2 deletions

14
Dockerfile Normal file
View file

@ -0,0 +1,14 @@
#
# Dockerfile
#
FROM python:alpine
MAINTAINER Yann Verry <docker@verry.org>
WORKDIR .
RUN pip install --no-cache-dir pipenv && \
pipenv install --system --deploy
USER nobody
CMD python /routeros-restapi/main.py