mirror of
https://github.com/cusspvz/openwrt-builder.docker.git
synced 2026-08-11 16:32:52 +00:00
Initial commit
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
FROM debian:8
|
||||
LABEL MAINTAINER "Jose Moreira <josemoreiravarzim@gmail.com>"
|
||||
|
||||
RUN echo "deb http://ftp.debian.org/debian jessie-backports main" >> /etc/apt/sources.list \
|
||||
&& apt-get update \
|
||||
&& apt-get -t jessie-backports install "gosu" \
|
||||
&& apt-get install -y --no-install-recommends \
|
||||
ca-certificates wget curl rsync \
|
||||
git subversion \
|
||||
build-essential g++ \
|
||||
python time unzip file gawk ccache gettext xsltproc \
|
||||
libssl-dev libncurses5-dev zlib1g-dev \
|
||||
&& apt-get autoclean \
|
||||
&& apt-get clean \
|
||||
&& apt-get autoremove \
|
||||
&& rm -rf /var/lib/apt/lists/*
|
||||
|
||||
ADD etc/entrypoint.sh /entrypoint
|
||||
RUN chmod 755 /entrypoint
|
||||
|
||||
RUN mkdir -p /src /output
|
||||
WORKDIR /src
|
||||
ENTRYPOINT ["/entrypoint"]
|
||||
CMD ["/bin/bash"]
|
||||
Reference in New Issue
Block a user