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