Last active
April 14, 2016 15:55
-
-
Save StephenKing/52e4c7c7ed048f50222db3d2a8c240ef to your computer and use it in GitHub Desktop.
SSL issues in Docker Debian 8
This file contains hidden or 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
# fails with SSL error | |
FROM debian:8 | |
# returns HTML content (SSL successful) | |
# FROM debian:7 | |
# FROM ubuntu:latest | |
RUN apt-get update | |
RUN apt-get -y install curl ca-certificates | |
RUN curl https://akamai.bintray.com |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Just run
docker build .
from within the directory containing thisDockerfile
.