huawei-3G-SMS-API/Dockerfile
Julien Cabillot a2896bd531
All checks were successful
perso/huawei-3G-SMS-API/master This commit looks good
Fix entrpoint
2019-08-06 11:35:42 -04:00

13 lines
207 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.sh" ]