Skip to content
Snippets Groups Projects
Select Git revision
  • eeb6aca313e075dd3e274b1074eca3823f1e6a03
  • master default protected
  • feat-create_little_container_for_developer
  • feat/pipeline_publish_extension
  • feat-publish_extension_on_marketplace_with_ci
  • feat-log-in
  • feat-connect_uri_handler_with_chosse_workdir_and_connection
  • feat-choose-mission-workdir
  • 10-en-tant-qu-etudiant-je-souhaite-pouvoir-lancer-une-mission-de-type-vscode-desktop-sur-mon-ide
  • new-building-way-recorder
  • fix-commit-any-challenge-type
  • recorder-push-code
  • theia-extension
  • 0.1.2
  • 0.1.1
  • 0.0.6
  • 1.4
  • 1.3
  • 1.2
  • 1.1
20 results

README.md

Blame
  • Dockerfile 604 B
    FROM theiaide/theia-java:1.4.0
    
    USER root
    
    RUN apt update
    RUN apt upgrade -y
    RUN apt install rsync -y
    
    COPY plugins /home/plugins
    COPY theia/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 start.sh .
    
    COPY recorder-out/dist/main.js deadlock/recorder.js
    COPY recorder-out/dist/preStop.js deadlock/preStop.js
    COPY .gitignore_recorder deadlock/.gitignore
    
    RUN chmod 500 deadlock/ -R
    RUN chmod 500 start.sh
    
    ENTRYPOINT ["bash", "start.sh"]