forked from iron-io/dockers
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
don't need to copy certs over anymore
- Loading branch information
Showing
1 changed file
with
0 additions
and
7 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 |
---|---|---|
@@ -1,12 +1,5 @@ | ||
FROM alpine | ||
|
||
RUN apk update && apk upgrade | ||
# NOTE: the ca-certificates pkg seems to have too many dependencies like lua: https://pkgs.alpinelinux.org/package/main/x86_64/ca-certificates | ||
# So just copying the certs directly in to reduce size | ||
# RUN apk add ca-certificates | ||
|
||
#RUN apk add musl | ||
RUN apk add ca-certificates | ||
|
||
RUN rm -rf /var/cache/apk/* | ||
ADD https://raw.githubusercontent.com/CenturyLinkLabs/ca-certs-base-image/master/ca-certificates.crt /etc/ssl/certs/ca-certificates.crt |