Sign inSign up

oreng/iojs

By oreng

Updated almost 11 years ago

Tiny iojs image using Alpine Linux - only 29 MB

Image
1

2.2K

oreng/iojs repository overview

Tiny io.js image using Alpine Linux - only 29 MB

docker pull oreng/iojs:latest

git repo: https://github.com/oren/alpine-iojs

Run

git clone [email protected]:oren/alpine-iojs.git
cd alpine-iojs
docker build -t alpine-nodejs .
docker run -v $(pwd):/tmp alpine-nodejs

Run with Docker Compose

git clone [email protected]:oren/alpine-iojs.git
cd alpine-iojs
docker-compose build
docker-compose run web

Dockerfile

FROM alpine:edge
RUN echo "http://dl-4.alpinelinux.org/alpine/edge/testing" >> /etc/apk/repositories 
RUN apk update
RUN apk add --update iojs
RUN apk update
RUN apk upgrade
RUN rm -rf /var/cache/apk/*
ENTRYPOINT ["node", "/tmp/index.js"]

Tag summary

Content type

Image

Digest

sha256:f3a1504b4

Size

11.6 MB

Last updated

almost 11 years ago

docker pull oreng/iojs