-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Fix Tizen cert issues in Docker image (#59)
Upgrading Tizen Studio to 5.0 (released just a couple weeks ago) seems to fix the certificate issues we've been having. Closes #57
- Loading branch information
1 parent
997bd95
commit 81a4bd0
Showing
2 changed files
with
6 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,8 +11,8 @@ MAINTAINER joeyparrish <[email protected]> | |
# Then clear the apt cache to reduce the size of the final image. | ||
# Docker's best practices guide recommends that these all be combined into one | ||
# step to avoid issues with the caching system. | ||
RUN apt-get -y update \ | ||
&& apt-get -y install --no-install-recommends \ | ||
RUN apt-get -y update | ||
RUN apt-get -y install --no-install-recommends \ | ||
ca-certificates \ | ||
cpio \ | ||
gettext \ | ||
|
@@ -25,10 +25,8 @@ RUN apt-get -y update \ | |
sudo \ | ||
unzip \ | ||
wget \ | ||
zip \ | ||
&& apt-get -y clean \ | ||
&& rm -rf /var/lib/apt/lists/* \ | ||
&& rm -rf /etc/apt/sources.list.d/* | ||
zip | ||
RUN apt-get -y clean && rm -rf /var/lib/apt/lists/* && rm -rf /etc/apt/sources.list.d/* | ||
|
||
# Add a non-root user with sudo access. | ||
RUN groupadd -r tizen \ | ||
|
@@ -43,7 +41,7 @@ USER tizen | |
WORKDIR /home/tizen | ||
|
||
# Download the Tizen Studio installer. | ||
ARG TIZEN_STUDIO_VERSION=3.7 | ||
ARG TIZEN_STUDIO_VERSION=5.0 | ||
ARG TIZEN_STUDIO_DL_FOLDER=http://download.tizen.org/sdk/Installer/tizen-studio_${TIZEN_STUDIO_VERSION} | ||
ARG TIZEN_STUDIO_BINARY=web-cli_Tizen_Studio_${TIZEN_STUDIO_VERSION}_ubuntu-64.bin | ||
RUN wget ${TIZEN_STUDIO_DL_FOLDER}/${TIZEN_STUDIO_BINARY} \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters