Aryanne's picture
Update Dockerfile
d936c60 verified
raw
history blame contribute delete
400 Bytes
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