FROM ubuntu | |
RUN apt update && apt install git build-essential wget python3-pip python3-numpy python3-opencv python3-requests libopencv-dev -y | |
RUN mkdir /place | |
WORKDIR ./place | |
RUN git clone https://github.com/Ar57m/another_fractal_generator/ -b server | |
RUN chmod -R 777 ./another_fractal_generator | |
WORKDIR ./another_fractal_generator | |
COPY ../* ./ | |
RUN bash ./start.sh | |
CMD python3 ./runner.py --port 7860 |