Skip to content

Commit

Permalink
🐛 fix small bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
Rezenders committed Mar 28, 2023
1 parent dc73000 commit 9e64688
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
12 changes: 6 additions & 6 deletions docker/dockerfile-suave
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,6 @@ FROM $BASE_IMAGE

USER root

# Set the locale
RUN sed -i '/en_US.UTF-8/s/^# //g' /etc/locale.gen && \
locale-gen
ENV LANG en_US.UTF-8
ENV LANGUAGE en_US:en
ENV LC_ALL en_US.UTF-8

### Envrionment config
ENV DEBIAN_FRONTEND noninteractive
Expand All @@ -33,6 +27,12 @@ RUN add-apt-repository ppa:kisak/kisak-mesa \
&& rm -rf /var/lib/apt/list/


# Set the locale
RUN sed -i '/en_US.UTF-8/s/^# //g' /etc/locale.gen && \
locale-gen
ENV LANG en_US.UTF-8
ENV LANGUAGE en_US:en
ENV LC_ALL en_US.UTF-8
### Install Visual Studio Code
# COPY ./docker/src/ubuntu/install/vs_code $INST_SCRIPTS/vs_code/
# RUN bash $INST_SCRIPTS/vs_code/install_vs_code.sh && rm -rf $INST_SCRIPTS/vs_code/
Expand Down
1 change: 1 addition & 0 deletions runner/scripts/launch_mission.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#!/bin/bash
source ~/.bashrc
source ~/suave_ws/install/setup.bash

if [ $# -lt 1 ]; then
echo "usage: $0 adaptation_manager mission_type"
Expand Down

0 comments on commit 9e64688

Please sign in to comment.