Skip to content

Commit

Permalink
Added iron/base:edge to allow node 4.1 build.
Browse files Browse the repository at this point in the history
  • Loading branch information
treeder committed Oct 19, 2015
1 parent 6464542 commit f53854e
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 1 deletion.
6 changes: 6 additions & 0 deletions base/edge/Dockerfile
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/*
14 changes: 14 additions & 0 deletions base/edge/README.md
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
```
2 changes: 1 addition & 1 deletion node/4.1/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM iron/base
FROM iron/base:edge

RUN echo '@edge https://nl.alpinelinux.org/alpine/edge/main' >> /etc/apk/repositories
RUN echo '@community https://nl.alpinelinux.org/alpine/edge/community' >> /etc/apk/repositories
Expand Down

0 comments on commit f53854e

Please sign in to comment.