vpncloud/.github/actions/build-deb/Dockerfile

21 lines
462 B
Docker
Raw Normal View History

2020-04-17 20:06:09 +00:00
FROM ubuntu:16.04
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
build-essential \
curl \
gcc-aarch64-linux-gnu \
gcc-arm-linux-gnueabihf \
2021-12-19 11:40:43 +00:00
gcc-arm-linux-gnueabi \
2020-04-17 20:06:09 +00:00
libc6-dev-arm64-cross \
libc6-dev-armhf-cross \
2021-12-19 11:40:43 +00:00
libc6-dev-armel-cross \
2020-04-17 20:06:09 +00:00
libc6-dev-i386 \
gcc-5-multilib \
2020-06-03 16:05:17 +00:00
asciidoctor \
2021-02-22 15:19:19 +00:00
&& apt-get clean && rm -rf /var/lib/apt/lists/*
2020-04-17 20:06:09 +00:00
ADD entrypoint.sh /entrypoint.sh
ENTRYPOINT /entrypoint.sh