-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #74 from nrakochy/0.13.x
Curl -> Tar of remote repo
- Loading branch information
Showing
1 changed file
with
4 additions
and
5 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,15 +1,14 @@ | ||
FROM frolvlad/alpine-oraclejdk8:full | ||
FROM frolvlad/alpine-oraclejre8:slim | ||
MAINTAINER Gardner Vickers <[email protected]> | ||
|
||
ADD https://github.com/just-containers/s6-overlay/releases/download/v1.11.0.1/s6-overlay-amd64.tar.gz /tmp/ | ||
RUN apk add --update libgcc libstdc++ bash curl | ||
RUN cd /tmp && curl -sL https://github.com/just-containers/s6-overlay/releases/download/v1.11.0.1/s6-overlay-amd64.tar.gz | tar xz | ||
RUN cd / | ||
|
||
RUN cp -r /tmp/etc/* /etc | ||
RUN cp -r /tmp/usr/* /usr | ||
RUN mv /tmp/init / | ||
|
||
RUN tar xzf /tmp/s6-overlay-amd64.tar.gz -C / | ||
RUN apk add --update libgcc libstdc++ bash | ||
|
||
ADD scripts/run_media_driver.sh /etc/services.d/media_driver/run | ||
ADD scripts/finish_media_driver.sh /etc/s6/media_driver/finish | ||
|
||
|