summaryrefslogtreecommitdiff
path: root/Dockerfile
blob: bf4ae2bfc0270adcd29849589e38188f8f5c263d (plain)
1
2
3
4
5
6
7
8
9
10
ARG VERSION=3
FROM python:$VERSION

RUN mkdir /isort
WORKDIR /isort
COPY . /isort

RUN python3 -m pip install poetry && poetry install

CMD /isort/scripts/done.sh