surl-front/Dockerfile
2024-08-15 13:44:04 +08:00

6 lines
159 B
Docker

FROM alpine:latest
RUN sed -i 's@dl-cdn.alpinelinux.org@mirrors.tuna.tsinghua.edu.cn@g' /etc/apk/repositories \
&& apk add --no-cache nginx
CMD ["nginx"]