We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f2ba6f4 commit 860492cCopy full SHA for 860492c
1 file changed
Dockerfile
@@ -8,8 +8,9 @@ FROM ruby:1.9.3
8
#
9
RUN sed -i '/jessie-updates/d' /etc/apt/sources.list
10
11
-# Install stuff. Currently just the build essentials.
12
-RUN apt-get update -qq && apt-get install -y build-essential
+# Install the build essentials for building gems and the updated certificates
+# to prevent "certificate verify failed" errors.
13
+RUN apt-get update -qq && apt-get install -y build-essential ca-certificates
14
15
# Install Gems. Use Bundler 1.17.3 as 2+ does not work with
16
# Ruby 1.9.3. Also update the rubygems to prevent frozen string
0 commit comments