Skip to content

Commit

Permalink
Merge pull request #2 from haller33/master
Browse files Browse the repository at this point in the history
add new version of roswell and debian to this project
  • Loading branch information
luksamuk committed Sep 10, 2021
2 parents 2c0f568 + 42ab22f commit d92beb7
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
FROM debian:9
RUN echo 'export PATH=$HOME/.roswell/bin:$PATH' >> ~/.bashrc
FROM debian:10
# RUN echo 'export PATH=$HOME/.roswell/bin:$PATH' >> ~/.bashrc
# Set the locale
RUN apt update && apt-get install curl make bzip2 libcurl3-gnutls locales -y
RUN apt update && apt-get install curl make bzip2 libcurl4-gnutls-dev locales -y
RUN sed --in-place '/en_US.UTF-8/s/^#//' /etc/locale.gen
RUN locale-gen en_US.UTF-8
ENV LANG en_US.UTF-8
ENV LANGUAGE en_US:en
ENV LC_ALL en_US.UTF-8
ARG ROSWELL_VERSION=20.06.14.107
ARG ROSWELL_VERSION=21.05.14.109
RUN curl -L -O https://github.com/roswell/roswell/releases/download/v${ROSWELL_VERSION}/roswell_${ROSWELL_VERSION}-1_amd64.deb && \
dpkg -i *.deb && ros && rm *.deb

ENV PATH="/root/.roswell/bin:${PATH}"

0 comments on commit d92beb7

Please sign in to comment.