2021-07-23 23:53:16 +02:00
|
|
|
FROM python:3-slim
|
|
|
|
|
|
|
|
|
|
WORKDIR /tool
|
2021-09-25 09:50:58 +02:00
|
|
|
WORKDIR /workdir
|
2021-07-23 23:53:16 +02:00
|
|
|
|
2021-09-25 09:50:58 +02:00
|
|
|
COPY tool/requirements.txt /tool/
|
2021-07-23 23:53:16 +02:00
|
|
|
RUN set -eux; \
|
|
|
|
|
apt-get update; \
|
|
|
|
|
apt-get install -y git; \
|
2021-09-25 09:50:58 +02:00
|
|
|
rm -rf /var/lib/apt/lists/*
|
2021-07-23 23:53:16 +02:00
|
|
|
|
2021-09-25 09:50:58 +02:00
|
|
|
RUN pip install -r /tool/requirements.txt
|
|
|
|
|
RUN ls /tool
|
|
|
|
|
COPY tool /tool
|
|
|
|
|
RUN ls /tool
|
2021-07-23 23:53:16 +02:00
|
|
|
|
2021-09-25 09:50:58 +02:00
|
|
|
CMD [ "/tool/entrypoint.py" ]
|