File size: 198 Bytes
8b414b0
 
 
 
f20ef11
 
 
8b414b0
215ce39
1
2
3
4
5
6
7
8
9
10
FROM python:3.8-slim

RUN curl -sSL https://install.python-poetry.org | python3 -

ENV PATH="${PATH}:/root/.poetry/bin"

RUN poetry install

CMD ["$HOME/.poetry/bin/poetry", "run", "make", "build"]