Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
Development_Environment
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Montaño Sarria, Andres Felipe
Development_Environment
Compare revisions
c25aa65e5ad54e89fc5d9f509e0749b639341027 to 17a8a711b9082a70423b0e46b59cd20a9c4dbf77
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
andres.montano/development_environment
Select target project
No results found
17a8a711b9082a70423b0e46b59cd20a9c4dbf77
Select Git revision
Branches
main
1 result
Swap
Target
andres.montano/development_environment
Select target project
andres.montano/development_environment
1 result
c25aa65e5ad54e89fc5d9f509e0749b639341027
Select Git revision
Branches
main
1 result
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (2)
FIX solve legacy warning
· d64af707
Montaño Sarria, Andres Felipe
authored
4 months ago
d64af707
Remove unused file
· 17a8a711
Montaño Sarria, Andres Felipe
authored
4 months ago
17a8a711
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
developer.code-workspace
+0
-7
0 additions, 7 deletions
developer.code-workspace
dockerfiles/devenv.Dockerfile
+8
-8
8 additions, 8 deletions
dockerfiles/devenv.Dockerfile
with
8 additions
and
15 deletions
developer.code-workspace
deleted
100644 → 0
View file @
c25aa65e
{
"folders": [
{
"path": "."
}
],
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
dockerfiles/devenv.Dockerfile
View file @
17a8a711
...
...
@@ -2,13 +2,13 @@
# * DEVENV Base Image for ROS *
# ***********************************************************
ARG
ROS_DISTRO
ARG
ROS_DISTRO
=
FROM
osrf/ros:${ROS_DISTRO}-desktop-full
as
devenv
ENV
ROS_DISTRO
"${ROS_DISTRO}"
ENV
ROS_DISTRO
=
"${ROS_DISTRO}"
ARG
EXT_SHELL=bash
ENV
EXT_SHELL
"${EXT_SHELL}"
ENV
SHELL
"/bin/${EXT_SHELL}"
ENV
EXT_SHELL
=
"${EXT_SHELL}"
ENV
SHELL
=
"/bin/${EXT_SHELL}"
RUN
echo
"Building devenv for ROS"
$ROS_DISTRO
"with shell"
$EXT_SHELL
# Avoid warnings by switching to noninteractive
...
...
@@ -25,9 +25,9 @@ RUN apt-get update && apt-get install -y apt-utils
RUN
apt-get
install
-y
\
locales
\
&&
sed
-i
'/en_US.UTF-8/s/^# //g'
/etc/locale.gen
&&
locale-gen en_US.UTF-8
ENV
LANG
en_US.UTF-8
ENV
LANGUAGE
en_US:en
ENV
LC_ALL
en_US.UTF-8
ENV
LANG
=
en_US.UTF-8
ENV
LANGUAGE
=
en_US:en
ENV
LC_ALL
=
en_US.UTF-8
# Configure apt and install base packages
RUN
apt-get update
&&
\
...
...
@@ -121,7 +121,7 @@ COPY ./ros_entrypoint.sh /
RUN
chmod
a+x /ros_entrypoint.sh
# Set running in docker for zsh powerlevel10k
ENV
RUNNING_IN_DOCKER
true
ENV
RUNNING_IN_DOCKER
=
true
# Define entrypoint and command
ENTRYPOINT
["/ros_entrypoint.sh"]
...
...
This diff is collapsed.
Click to expand it.