Skip to content

Commit

Permalink
Fix base Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
LanderU committed Dec 26, 2023
1 parent 5a472d2 commit 25c1e25
Showing 1 changed file with 14 additions and 8 deletions.
22 changes: 14 additions & 8 deletions ade/docker-base/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,22 +3,28 @@ FROM $OS_VERSION

MAINTAINER Lander Usategui <lander dot usategui at gmail dot com>

ENV LANG en_US.UTF-8
ENV LANGUAGE en_US.UTF-8
ENV LC_ALL en_US.UTF-8

ENV ROS_VERSION rolling

WORKDIR /root/ros2_$ROS_VERSION

RUN apt-get update && \
apt-get install -y \
apt-utils \
curl \
locales \
software-properties-common \
tzdata \
&& rm -rf /var/lib/apt/lists/*

RUN locale-gen en_US.UTF-8; dpkg-reconfigure -f noninteractive locales
ENV LANG en_US.UTF-8
ENV LANGUAGE en_US.UTF-8
ENV LC_ALL en_US.UTF-8

RUN apt-get update \
&& echo 'Etc/UTC' > /etc/timezone \
&& ln -s /usr/share/zoneinfo/Etc/UTC /etc/localtime \
&& apt-get install -y \
firefox \
sudo \
locales \
tzdata \
libogre-1.12 \
htop \
stress-ng \
Expand Down

0 comments on commit 25c1e25

Please sign in to comment.