Import
All checks were successful
perso/huawei-3G-SMS-API/master This commit looks good

This commit is contained in:
2019-08-06 11:24:49 -04:00
commit 89b7caaacc
10 changed files with 304 additions and 0 deletions

12
Dockerfile Normal file
View File

@@ -0,0 +1,12 @@
FROM "python:3.7-alpine"
LABEL maintainer="Cabillot Julien <dockerimages@cabillot.eu>"
COPY app /app
WORKDIR "/app"
RUN pip install -r requirements.txt
USER "nobody"
ENTRYPOINT [ "/app/entrypoint" ]