Files
huawei-3G-SMS-API/Dockerfile
Julien Cabillot 4fc5edc549
All checks were successful
perso/huawei-3G-SMS-API/master This commit looks good
No cache for pip
2019-08-06 11:39:25 -04:00

13 lines
234 B
Docker

FROM "python:3.7-alpine"
LABEL maintainer="Cabillot Julien <dockerimages@cabillot.eu>"
COPY app /app
WORKDIR "/app"
RUN pip install --no-cache-dir --requirement requirements.txt
#USER "nobody"
ENTRYPOINT [ "/app/entrypoint.sh" ]