rahul-thakoor / busybox-entware

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

busybox-entware

A lightweight docker image based on busybox and Entware

This image provides opkg with support for 2500+ packages from Entware repository

How to use?

Use rahulthakoor/busybox-entware as base image in your Dockerfile.

E.g :

FROM rahulthakoor/busybox-entware

# Install lighttpd
RUN opkg update &&\
    opkg install lighttpd

WORKDIR /usr/src/app

COPY start.sh ./

COPY lighttpd.conf ./

RUN mkdir -p /var/www/servers/test/pages/

COPY index.html /var/www/servers/test/pages/

RUN mkdir /var/tmp

CMD ["sh", "start.sh"]

Package lists

Attribution

This project simply installs opkg from Entware repository in the busybox image. All credits go to the original developers

About


Languages

Language:Shell 100.0%