Skip to content

Commit 71be19e

Browse files
authored
change: remove incubator in repo url. (#71)
1 parent a07fce2 commit 71be19e

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

alpine-dev/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ RUN set -x \
99
pkgconfig \
1010
cmake \
1111
git \
12-
&& luarocks install https://github.com/apache/incubator-apisix/raw/master/rockspec/apisix-master-0.rockspec --tree=/usr/local/apisix/deps \
12+
&& luarocks install https://github.com/apache/apisix/raw/master/rockspec/apisix-master-0.rockspec --tree=/usr/local/apisix/deps \
1313
&& cp -v /usr/local/apisix/deps/lib/luarocks/rocks-5.1/apisix/master-0/bin/apisix /usr/bin/ \
1414
&& bin='#! /usr/local/openresty/luajit/bin/luajit\npackage.path = "/usr/local/apisix/?.lua;" .. package.path' \
1515
&& sed -i "1s@.*@$bin@" /usr/bin/apisix \

alpine/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ ARG APISIX_VERSION=1.3
55
RUN set -x \
66
&& /bin/sed -i 's,http://dl-cdn.alpinelinux.org,https://mirrors.aliyun.com,g' /etc/apk/repositories \
77
&& apk add --no-cache --virtual .build-deps git \
8-
&& git clone -b ${APISIX_VERSION} https://github.com/apache/incubator-apisix.git /tmp/apisix \
8+
&& git clone -b ${APISIX_VERSION} https://github.com/apache/apisix.git /tmp/apisix \
99
&& cd /tmp/apisix \
1010
&& git submodule init \
1111
&& git submodule update \
@@ -26,7 +26,7 @@ RUN set -x \
2626
pkgconfig \
2727
cmake \
2828
git \
29-
&& luarocks install https://github.com/apache/incubator-apisix/raw/master/rockspec/apisix-${APISIX_VERSION}-0.rockspec --tree=/usr/local/apisix/deps \
29+
&& luarocks install https://github.com/apache/apisix/raw/master/rockspec/apisix-${APISIX_VERSION}-0.rockspec --tree=/usr/local/apisix/deps \
3030
&& cp -v /usr/local/apisix/deps/lib/luarocks/rocks-5.1/apisix/${APISIX_VERSION}-0/bin/apisix /usr/bin/ \
3131
&& bin='#! /usr/local/openresty/luajit/bin/luajit\npackage.path = "/usr/local/apisix/?.lua;" .. package.path' \
3232
&& sed -i "1s@.*@$bin@" /usr/bin/apisix \

build.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
1. install release version (Apache releases are beginning from version 0.9):
66
```
7-
# Assign Apache release version number to variable `APISIX_VERSION`, for example: 1.2 . The latest version can be find at `https://github.com/apache/incubator-apisix/releases`
7+
# Assign Apache release version number to variable `APISIX_VERSION`, for example: 1.2 . The latest version can be find at `https://github.com/apache/apisix/releases`
88
99
APISIX_VERSION=1.2
1010
docker build -t apisix:${APISIX_VERSION}-alpine --build-arg APISIX_VERSION=${APISIX_VERSION} -f alpine/Dockerfile alpine

centos/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ LABEL apisix_version="${APISIX_VERSION}"
66
RUN yum -y install yum-utils\
77
&& yum-config-manager --add-repo https://openresty.org/package/centos/openresty.repo \
88
&& yum install -y openresty \
9-
&& yum install -y https://github.com/apache/incubator-apisix/releases/download/$APISIX_VERSION/apisix-$APISIX_VERSION-0.el7.noarch.rpm \
9+
&& yum install -y https://github.com/apache/apisix/releases/download/$APISIX_VERSION/apisix-$APISIX_VERSION-0.el7.noarch.rpm \
1010
&& yum clean all \
1111
&& sed -i 's/PASS_MAX_DAYS\t99999/PASS_MAX_DAYS\t60/g' /etc/login.defs
1212

example/gen-config-yaml.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
export etcd_url='http://172.18.5.10:2379'
44

5-
wget https://raw.githubusercontent.com/apache/incubator-apisix/master/conf/config.yaml
5+
wget https://raw.githubusercontent.com/apache/apisix/master/conf/config.yaml
66

77
sed -i -e ':a' -e 'N' -e '$!ba' -e "s/allow_admin[a-z: #\/._]*\n\( *- [0-9a-zA-Z: #\/._',]*\n*\)*//g" config.yaml
88

0 commit comments

Comments
 (0)