File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change 11FROM debian:9
22RUN echo 'export PATH=$HOME/.roswell/bin:$PATH' >> ~/.bashrc
33# Set the locale
4- RUN apt-get install locales -y
4+ RUN apt update && apt -get install curl make bzip2 libcurl3-gnutls locales -y
55RUN sed --in-place '/en_US.UTF-8/s/^#//' /etc/locale.gen
66RUN locale-gen en_US.UTF-8
77ENV LANG en_US.UTF-8
88ENV LANGUAGE en_US:en
99ENV LC_ALL en_US.UTF-8
10- RUN apt update && apt install -y curl make bzip2 libcurl3-gnutls
11- RUN curl -L -O https://github.com/roswell/roswell/releases/download/v19.3.10.97/roswell_19.3.10.97 -1_amd64.deb && \
10+ ARG ROSWELL_VERSION=20.06.14.107
11+ RUN curl -L -O https://github.com/roswell/roswell/releases/download/v${ROSWELL_VERSION}/roswell_${ROSWELL_VERSION} -1_amd64.deb && \
1212 dpkg -i *.deb && ros && rm *.deb
13-
You can’t perform that action at this time.
0 commit comments