Skip to content
Snippets Groups Projects
Select Git revision
  • 541551a57f62054d7394292efc16120ebf6aab86
  • main default protected
2 results

PlayerServiceImpl.kt

Blame
  • Dockerfile 722 B
    FROM registry.e-biz.fr/deadlock-public/theia:1.20
    
    USER root
    
    RUN apt update
    RUN apt upgrade -y
    RUN apt install rsync -y
    RUN apt install vim -y
    
    COPY plugins /home/plugins
    COPY plugin-storage/global-state.json /home/theia/.theia/plugin-storage/global-state.json
    RUN chown theia /home/theia/.theia -R
    RUN chown theia /home/plugins -R
    
    COPY server.js /home/theia/src-gen/backend/server.js
    
    COPY recorder-out/dist/main.js deadlock/recorder.js
    COPY recorder-out/dist/preStop.js deadlock/preStop.js
    COPY .gitignore_recorder deadlock/.gitignore
    
    COPY setup_trace.py .
    RUN chmod 700 setup_trace.py
    RUN chown theia setup_trace.py
    
    COPY start.sh .
    RUN chmod 504 deadlock/ -R
    RUN chmod 500 start.sh
    
    ENTRYPOINT ["bash", "start.sh"]