pixel_gan / Dockerfile
Arkadiusz's picture
feat: nitial commit
7692bd6
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