File size: 373 Bytes
824c0f0 7692bd6 824c0f0 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
FROM ubuntu
RUN apt-get update -y
RUN apt-get upgrade -y
RUN apt install software-properties-common curl -y
RUN apt-get install python3-distutils python3-pip -y
RUN apt-get install git
COPY pyproject.toml /pyproject.toml
RUN pip install poetry
RUN poetry config virtualenvs.create false
RUN poetry install --no-interaction
COPY setup.sh /setup.sh
RUN bash setup.sh
|