move download files to dockerfile
This commit is contained in:
parent
58ec3becc1
commit
c3ef5a2516
102
Dockerfile
102
Dockerfile
@ -1,57 +1,3 @@
|
||||
FROM ubuntu:focal AS build-env
|
||||
|
||||
RUN apt-get update && DEBIAN_FRONTEND="noninteractive" apt-get --yes --no-install-recommends install wget build-essential make libsqlite3-dev zlib1g-dev libreadline-dev libssl-dev
|
||||
RUN mkdir /download
|
||||
RUN cd /download \
|
||||
&& wget --no-check-certificate https://github.com/lxsang/ant-http/raw/master/dist/antd-1.0.6b.tar.gz \
|
||||
&& tar xvzf antd-1.0.6b.tar.gz \
|
||||
&& rm antd-1.0.6b.tar.gz
|
||||
|
||||
RUN cd /download \
|
||||
&& wget --no-check-certificate https://github.com/lxsang/antd-lua-plugin/raw/master/dist/lua-0.5.2b.tar.gz \
|
||||
&& tar xvzf lua-0.5.2b.tar.gz \
|
||||
&& rm lua-0.5.2b.tar.gz
|
||||
|
||||
RUN cd /download \
|
||||
&& wget --no-check-certificate https://github.com/lxsang/antd-wterm-plugin/raw/master/dist/wterm-1.0.0b.tar.gz \
|
||||
&& tar xvzf wterm-1.0.0b.tar.gz \
|
||||
&& rm wterm-1.0.0b.tar.gz
|
||||
|
||||
RUN cd /download \
|
||||
&& wget --no-check-certificate https://github.com/lxsang/antd-tunnel-plugin/raw/master/dist/tunnel-0.1.0b.tar.gz \
|
||||
&& tar xvzf tunnel-0.1.0b.tar.gz \
|
||||
&& rm tunnel-0.1.0b.tar.gz
|
||||
|
||||
RUN cd /download \
|
||||
&& wget --no-check-certificate https://github.com/lxsang/antd-tunnel-publishers/raw/master/dist/antd-publishers-0.1.0a.tar.gz \
|
||||
&& tar xvzf antd-publishers-0.1.0a.tar.gz \
|
||||
&& rm antd-publishers-0.1.0a.tar.gz
|
||||
|
||||
RUN cd /download \
|
||||
&& wget --no-check-certificate https://github.com/lxsang/antd-web-apps/raw/master/dist/antd_web_apps.tar.gz \
|
||||
&& mkdir -p y-antd-web-apps \
|
||||
&& tar xvzf antd_web_apps.tar.gz -C y-antd-web-apps \
|
||||
&& rm antd_web_apps.tar.gz
|
||||
|
||||
RUN cd /download \
|
||||
&& wget --no-check-certificate https://github.com/lxsang/antos/raw/next-1.2.0/release/antos-1.2.0.tar.gz \
|
||||
&& mkdir -p z-antos \
|
||||
&& tar xvzf antos-1.2.0.tar.gz -C z-antos \
|
||||
&& rm antos-1.2.0.tar.gz
|
||||
|
||||
RUN cd /download/antd-1.0.6b && ./configure --prefix=/usr/ && make && make install
|
||||
RUN cd /download/lua-0.5.2b && ./configure --prefix=/opt/www && make && make install
|
||||
RUN cd /download/wterm-1.0.0b && ./configure --prefix=/opt/www && make && make install
|
||||
|
||||
RUN cd /download/tunnel-0.1.0b && ./configure --prefix=/opt/www && make && make install
|
||||
RUN cd /download/antd-publishers-0.1.0a && ./configure --prefix=/opt/www && make && make install
|
||||
|
||||
|
||||
#vRUN mkdir -p /opt/www/htdocs
|
||||
# RUN cd /download/y-antd-web-apps && BUILDDIR=/opt/www/htdocs PROJS=os make
|
||||
# RUN rm /opt/www/htdocs/index.ls
|
||||
#RUN cd /download/antos && npm install terser uglifycss typescript -g && npm install @types/jquery && BUILDDIR=/opt/www/htdocs/os make release
|
||||
|
||||
FROM ubuntu:focal AS deploy-env
|
||||
RUN apt-get update && apt-get --yes --no-install-recommends install libsqlite3-0 zlib1g libreadline8 libssl1.1 wget
|
||||
RUN apt clean && rm -rf /var/lib/apt/lists/*
|
||||
@ -74,6 +20,53 @@ RUN cp -rf /lib/*-linux-*/libidn2* /ulib
|
||||
RUN cp -rf /lib/*-linux-*/libpsl* /ulib
|
||||
RUN cp -rf /lib/*-linux-*/libunistring* /ulib
|
||||
|
||||
FROM ubuntu:focal AS build-env
|
||||
RUN apt-get update && DEBIAN_FRONTEND="noninteractive" apt-get --yes --no-install-recommends install wget build-essential make libsqlite3-dev zlib1g-dev libreadline-dev libssl-dev
|
||||
RUN mkdir /download
|
||||
RUN cd /download \
|
||||
&& wget --no-check-certificate https://github.com/lxsang/ant-http/raw/master/dist/antd-1.0.6b.tar.gz \
|
||||
&& tar xvzf antd-1.0.6b.tar.gz \
|
||||
&& rm antd-1.0.6b.tar.gz
|
||||
RUN cd /download/antd-1.0.6b && ./configure --prefix=/usr/ && make && make install
|
||||
|
||||
RUN cd /download \
|
||||
&& wget --no-check-certificate https://github.com/lxsang/antd-lua-plugin/raw/master/dist/lua-0.5.2b.tar.gz \
|
||||
&& tar xvzf lua-0.5.2b.tar.gz \
|
||||
&& rm lua-0.5.2b.tar.gz
|
||||
RUN cd /download/lua-0.5.2b && ./configure --prefix=/opt/www && make && make install
|
||||
|
||||
RUN cd /download \
|
||||
&& wget --no-check-certificate https://github.com/lxsang/antd-wterm-plugin/raw/master/dist/wterm-1.0.0b.tar.gz \
|
||||
&& tar xvzf wterm-1.0.0b.tar.gz \
|
||||
&& rm wterm-1.0.0b.tar.gz
|
||||
RUN cd /download/wterm-1.0.0b && ./configure --prefix=/opt/www && make && make install
|
||||
|
||||
RUN cd /download \
|
||||
&& wget --no-check-certificate https://github.com/lxsang/antd-tunnel-plugin/raw/master/dist/tunnel-0.1.0b.tar.gz \
|
||||
&& tar xvzf tunnel-0.1.0b.tar.gz \
|
||||
&& rm tunnel-0.1.0b.tar.gz
|
||||
RUN cd /download/tunnel-0.1.0b && ./configure --prefix=/opt/www && make && make install
|
||||
|
||||
RUN cd /download \
|
||||
&& wget --no-check-certificate https://github.com/lxsang/antd-tunnel-publishers/raw/master/dist/antd-publishers-0.1.0a.tar.gz \
|
||||
&& tar xvzf antd-publishers-0.1.0a.tar.gz \
|
||||
&& rm antd-publishers-0.1.0a.tar.gz
|
||||
RUN cd /download/antd-publishers-0.1.0a && ./configure --prefix=/opt/www && make && make install
|
||||
|
||||
# download web apps
|
||||
RUN cd /download \
|
||||
&& wget --no-check-certificate https://github.com/lxsang/antd-web-apps/raw/master/dist/antd_web_apps.tar.gz#nothing3 \
|
||||
&& mkdir -p y-antd-web-apps \
|
||||
&& tar xvzf antd_web_apps.tar.gz -C y-antd-web-apps \
|
||||
&& rm antd_web_apps.tar.gz
|
||||
|
||||
RUN rm -rf /download/z-antos
|
||||
RUN cd /download \
|
||||
&& wget --no-check-certificate https://github.com/lxsang/antos/raw/next-1.2.0/release/antos-1.2.0.tar.gz \
|
||||
&& mkdir -p z-antos \
|
||||
&& tar xvzf antos-1.2.0.tar.gz -C z-antos \
|
||||
&& rm antos-1.2.0.tar.gz
|
||||
|
||||
FROM busybox:stable-glibc
|
||||
#copy all necessary libraries
|
||||
COPY --from=deploy-env /ulib/* /lib/
|
||||
@ -85,6 +78,7 @@ COPY --from=build-env /download/z-antos /opt/www/htdocs/os
|
||||
COPY --from=build-env /download/y-antd-web-apps/os /opt/www/htdocs/os
|
||||
COPY --from=build-env /download/y-antd-web-apps/silk /opt/www/htdocs/silk
|
||||
COPY --from=build-env /download/y-antd-web-apps/mimes.json /opt/www/htdocs/
|
||||
RUN chown -R root:root /opt/www/htdocs/
|
||||
COPY start.sh /start.sh
|
||||
RUN chmod 700 /start.sh
|
||||
ENTRYPOINT /start.sh
|
||||
|
35
bake.sh
35
bake.sh
@ -1,44 +1,11 @@
|
||||
#! /bin/bash
|
||||
|
||||
if [ ! -d "download" ]; then
|
||||
mkdir download
|
||||
cd download || (echo "Unable to change directory" && exit 1)
|
||||
|
||||
wget https://github.com/lxsang/ant-http/raw/master/dist/antd-1.0.6b.tar.gz
|
||||
tar xvzf antd-1.0.6b.tar.gz
|
||||
rm antd-1.0.6b.tar.gz
|
||||
|
||||
wget https://github.com/lxsang/antd-lua-plugin/raw/master/dist/lua-0.5.2b.tar.gz
|
||||
tar xvzf lua-0.5.2b.tar.gz
|
||||
rm lua-0.5.2b.tar.gz
|
||||
|
||||
wget https://github.com/lxsang/antd-wterm-plugin/raw/master/dist/wterm-1.0.0b.tar.gz
|
||||
tar xvzf wterm-1.0.0b.tar.gz
|
||||
rm wterm-1.0.0b.tar.gz
|
||||
|
||||
wget https://github.com/lxsang/antd-tunnel-plugin/raw/master/dist/tunnel-0.1.0b.tar.gz
|
||||
tar xvzf tunnel-0.1.0b.tar.gz
|
||||
rm tunnel-0.1.0b.tar.gz
|
||||
|
||||
wget https://github.com/lxsang/antd-tunnel-publishers/raw/master/dist/antd-publishers-0.1.0a.tar.gz
|
||||
tar xvzf antd-publishers-0.1.0a.tar.gz
|
||||
rm antd-publishers-0.1.0a.tar.gz
|
||||
|
||||
git clone --depth 1 https://github.com/lxsang/antd-web-apps y-antd-web-apps
|
||||
wget https://github.com/lxsang/antos/raw/next-1.2.0/release/antos-1.2.0.tar.gz
|
||||
mkdir -p z-antos
|
||||
tar xvzf antos-1.2.0.tar.gz -C z-antos
|
||||
rm antos-1.2.0.tar.gz
|
||||
cd ../
|
||||
|
||||
fi
|
||||
|
||||
# this require docker buildx plugin
|
||||
# https://github.com/docker/buildx#installing
|
||||
# may need to execute this first
|
||||
# docker buildx create --use
|
||||
# Register Arm executables to run on x64 machines
|
||||
# docker run --rm --privileged docker/binfmt:a7996909642ee92942dcd6cff44b9b95f08dad64
|
||||
docker run --rm --privileged docker/binfmt:a7996909642ee92942dcd6cff44b9b95f08dad64
|
||||
|
||||
|
||||
docker buildx build \
|
||||
|
Loading…
Reference in New Issue
Block a user