huawei-3G-SMS-API/Dockerfile
Julien Cabillot 89b7caaacc
All checks were successful
perso/huawei-3G-SMS-API/master This commit looks good
Import
2019-08-06 11:24:49 -04:00

13 lines
204 B
Docker

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" ]