Skip to content
Snippets Groups Projects
Select Git revision
  • bbfa1446c71e346fe9e929bde872b056ffd15212
  • master default protected
  • docs-improve_user_path_description
  • fix-pipeline
  • ci-change_exercises_image_registry
  • feat-merge_recorder_in_extension
  • feat-default_folder
  • feat-change_user
  • develop protected
  • refactor-mission
  • feat-exercise_automatic_save
  • docs-improve_documentation
  • feat-create_little_container_for_developer
  • feat-local-dev
  • 0.1.12
  • 0.1.11
  • 0.1.10
  • 0.1.5
18 results

server.js

Blame
  • Dockerfile.code 603 B
    FROM registry.e-biz.fr/deadlock-public/theia:1.22.1-java
    
    USER root
    
    RUN apt update
    RUN apt upgrade -y
    RUN apt install rsync -y
    RUN apt install vim -y
    
    COPY plugins /home/plugins
    COPY default/.theia/ /home/theia/.theia/
    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/ deadlock/
    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"]