6 lines
178 B
Plaintext
6 lines
178 B
Plaintext
FROM nginx:alpine
|
|
MAINTAINER tradewind
|
|
RUN sed -i \
|
|
's/dl-cdn.alpinelinux.org/mirrors.tuna.tsinghua.edu.cn/g' \
|
|
/etc/apk/repositories && apk update
|
|
WORKDIR /var/www/http/ |