1
0
Fork 0

Create files
the build was successful Details
continuous-integration/drone/push Build is failing Details

master
Ambrose Chua 2018-11-30 01:29:59 +08:00
parent 1fbe3fc391
commit f871efbdbe
2 changed files with 29 additions and 0 deletions

8
.drone.yml Normal file
View File

@ -0,0 +1,8 @@
pipeline:
docker:
image: plugins/docker
registry: registry.makerforce.io
secrets: [ docker_username, docker_password ]
repo: registry.makerforce.io/build/openwrt-deps
tags:
- latest

21
Dockerfile Normal file
View File

@ -0,0 +1,21 @@
FROM ubuntu:bionic
RUN apt update \
&& apt-get install -y \
git \
subversion \
build-essential \
libncurses5-dev \
zlib1g-dev \
gawk \
gcc-multilib \
flex \
gettext \
libssl-dev \
unzip \
wget \
time \
python \
file \
autoconf \
&& rm -rf /var/lib/apt/lists/*