Skip to content

Commit 2c0f568

Browse files
committed
Upgrade roswell
1 parent 20f9105 commit 2c0f568

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

Dockerfile

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
11
FROM debian:9
22
RUN 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
55
RUN sed --in-place '/en_US.UTF-8/s/^#//' /etc/locale.gen
66
RUN locale-gen en_US.UTF-8
77
ENV LANG en_US.UTF-8
88
ENV LANGUAGE en_US:en
99
ENV 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-

0 commit comments

Comments
 (0)