huawei-3G-SMS-API/Dockerfile

14 lines
272 B
Docker
Raw Normal View History

2019-08-06 11:24:49 -04:00
FROM "python:3.7-alpine"
LABEL maintainer="Cabillot Julien <dockerimages@cabillot.eu>"
COPY app /app
2019-08-06 11:42:51 -04:00
COPY entrypoint.sh /app/entrypoint.sh
2019-08-06 11:24:49 -04:00
WORKDIR "/app"
2019-08-06 11:39:25 -04:00
RUN pip install --no-cache-dir --requirement requirements.txt
2019-08-06 11:24:49 -04:00
2019-08-06 11:36:47 -04:00
#USER "nobody"
2019-08-06 11:24:49 -04:00
2019-08-06 11:35:42 -04:00
ENTRYPOINT [ "/app/entrypoint.sh" ]