2019-08-06 11:24:49 -04:00
|
|
|
FROM "python:3.7-alpine"
|
|
|
|
|
LABEL maintainer="Cabillot Julien <dockerimages@cabillot.eu>"
|
|
|
|
|
|
|
|
|
|
COPY app /app
|
|
|
|
|
|
|
|
|
|
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" ]
|