File tree Expand file tree Collapse file tree 2 files changed +6
-8
lines changed Expand file tree Collapse file tree 2 files changed +6
-8
lines changed Original file line number Diff line number Diff line change 1111# Then clear the apt cache to reduce the size of the final image.
1212# Docker's best practices guide recommends that these all be combined into one
1313# step to avoid issues with the caching system.
14- RUN apt-get -y update \
15- && apt-get -y install --no-install-recommends \
14+ RUN apt-get -y update
15+ RUN apt-get -y install --no-install-recommends \
1616 ca-certificates \
1717 cpio \
1818 gettext \
@@ -25,10 +25,8 @@ RUN apt-get -y update \
2525 sudo \
2626 unzip \
2727 wget \
28- zip \
29- && apt-get -y clean \
30- && rm -rf /var/lib/apt/lists/* \
31- && rm -rf /etc/apt/sources.list.d/*
28+ zip
29+ RUN apt-get -y clean && rm -rf /var/lib/apt/lists/* && rm -rf /etc/apt/sources.list.d/*
3230
3331# Add a non-root user with sudo access.
3432RUN groupadd -r tizen \
@@ -43,7 +41,7 @@ USER tizen
4341WORKDIR /home/tizen
4442
4543# Download the Tizen Studio installer.
46- ARG TIZEN_STUDIO_VERSION=3.7
44+ ARG TIZEN_STUDIO_VERSION=5.0
4745ARG TIZEN_STUDIO_DL_FOLDER=http://download.tizen.org/sdk/Installer/tizen-studio_${TIZEN_STUDIO_VERSION}
4846ARG TIZEN_STUDIO_BINARY=web-cli_Tizen_Studio_${TIZEN_STUDIO_VERSION}_ubuntu-64.bin
4947RUN wget ${TIZEN_STUDIO_DL_FOLDER}/${TIZEN_STUDIO_BINARY} \
Original file line number Diff line number Diff line change @@ -206,7 +206,7 @@ function addTizenArgs(yargs) {
206206 'For local Tizen Studio installations, use ' +
207207 '--local-tizen-studio.\n' ,
208208 type : 'string' ,
209- default : 'gcr.io/generic-webdriver-server/tizen-studio-tv-3.0:1.0.0 ' ,
209+ default : 'gcr.io/generic-webdriver-server/tizen-studio-tv-3.0:1.1.4 ' ,
210210 } )
211211 . option ( 'tizen-studio-path' , {
212212 description :
You can’t perform that action at this time.
0 commit comments