fastsdcpu-test / Dockerfile
lemonteaa's picture
Create Dockerfile
a032573
raw
history blame
193 Bytes
FROM python:3
WORKDIR /code
RUN apt-get update && apt-get install -y git
RUN git clone https://github.com/rupeshs/fastsdcpu
WORKDIR /code/fastsdcpu
RUN ./install.sh
CMD ["./start-webui.sh"]