This repository was archived by the owner on Jul 20, 2018. It is now read-only.

Description
Hi,
are there any plans to use optimize the image size?
We where using iojs image and a customer complained about the image with more than 700 MB, and suggested iojs-slim. The result was still 300 MB - including spm-agent-docker.
After using this as base:
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 add --update git
RUN apk update
RUN apk upgrade
RUN rm -rf /var/cache/apk/*
the image size for spm-agent-docker had a final size of 123 MB.
But here is my concern:
- how to ensure that there is the latest io.js available as .apk package?
In any case I would like to see a tiny, offical iojs base image.
Thanks
Stefan