Files
coverage-comment-action/Dockerfile
Joachim Jablon ebcebf7ed6 WIP
2021-09-25 11:54:09 +02:00

18 lines
302 B
Docker

FROM python:3-slim
WORKDIR /tool
WORKDIR /workdir
COPY tool/requirements.txt /tool/
RUN set -eux; \
apt-get update; \
apt-get install -y git; \
rm -rf /var/lib/apt/lists/*
RUN pip install -r /tool/requirements.txt
RUN ls /tool
COPY tool /tool
RUN ls /tool
CMD [ "/tool/entrypoint.py" ]