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.
Added iron/base:edge to allow node 4.1 build.
- Loading branch information
Showing
3 changed files
with
21 additions
and
1 deletion.
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
FROM alpine:edge | ||
|
||
RUN apk update && apk upgrade | ||
# TODO: ca-certificates fails to install on alpine:edge | ||
#RUN apk add ca-certificates | ||
RUN rm -rf /var/cache/apk/* |
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
|
||
This image is a base image for Iron.io's set of tiny images. Currently, it's just the alpine OS image. | ||
|
||
## Building this image | ||
|
||
```sh | ||
docker build -t iron/base:edge . | ||
``` | ||
|
||
Push: | ||
|
||
```sh | ||
docker push iron/base | ||
``` |
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