Skip to content
Snippets Groups Projects
Select Git revision
  • 43f1d84a8d02014709e556bb58a9cef67bc298c0
  • main default
  • penenadpi/config-man
  • penenadpi/visualization-extension
  • penenadpi/visulization-html-extended
  • penenadpi/result-persistence
  • penenadpi/result-filter-fix-files
  • penenadpi/result-filter-fix
  • y1
  • 0.1.9
  • 0.1.8
  • 0.1.7
  • 0.1.6
  • 0.1.5
  • 0.1.4
  • 0.1.3
  • 0.1.2
  • 0.1.1
  • 0.1.0
  • 0.0.9
  • 0.0.8
  • 0.0.7
  • 0.0.6
  • 0.0.5
  • 0.0.4
  • 0.0.3
  • 0.0.2
  • 0.0.1
28 results

utils.py

Blame
  • Dockerfile 655 B
    ARG APPLICATION_DEV_IMAGE
    FROM ${APPLICATION_DEV_IMAGE}
    
    RUN apt-get update -qq && apt-get install -y -qq \
      apt-transport-https
    
    RUN curl https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > microsoft.gpg \
      && mv microsoft.gpg /etc/apt/trusted.gpg.d/microsoft.gpg \
      && sh -c 'echo "deb [arch=amd64] https://packages.microsoft.com/repos/vscode stable main" > /etc/apt/sources.list.d/vscode.list'
    
    RUN apt-get update -qq && apt-get install -y -qq \
      code
    
    RUN echo "alias code='code --user-data-dir /root'" >> /root/.bashrc
    
    RUN code --user-data-dir /root \
      --install-extension ajshort.ros \
      --install-extension ms-vscode.cpptools