virtual-streamer / Dockerfile
JeanMoulo's picture
try to fix file writing rights 5
273d70c
raw
history blame
No virus
179 Bytes
FROM amorvend/virtual-teacher-space:demo
RUN useradd -m -u 1000 user
RUN mkdir /runtime
RUN chmod 777 /runtime
USER user
WORKDIR /runtime
ENTRYPOINT ["python3", "/src/demo.py"]