pixel_gan / Dockerfile
Arkadiusz's picture
feat: nitial commit
824c0f0
raw
history blame
No virus
349 Bytes
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
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