Another_Fractal_Generator / Dockerfile (2).txt
Aryanne's picture
Upload 2 files
99e193a verified
raw
history blame
383 Bytes
FROM ubuntu
RUN apt update && apt install git build-essential wget python3-pip python3-numpy python3-opencv 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