huawei-3G-SMS-API/Dockerfile
Julien Cabillot d113b96bf4
All checks were successful
perso/huawei-3G-SMS-API/master This commit looks good
Move entrypoint
2019-08-06 11:42:51 -04:00

14 lines
272 B
Docker

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