huawei-3G-SMS-API/Dockerfile
Julien Cabillot b6c7af6070
All checks were successful
perso/huawei-3G-SMS-API/master This commit looks good
Pas encore de user nobody
2019-08-06 11:36:47 -04:00

13 lines
208 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" ]