All checks were successful
perso/huawei-3G-SMS-API/master This commit looks good
14 lines
272 B
Docker
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" ]
|