File size: 266 Bytes
e9ba254 8cc190b 3bfd9c0 f2391be |
1 2 3 4 5 6 7 8 9 |
FROM searxng/searxng:latest
RUN mkdir /tmp/temp_searxng
COPY ./searxng /tmp/temp_searxng
RUN cp -R /tmp/temp_searxng/* /etc/searxng/
RUN chmod 777 /etc/searxng
ENV TZ=Asia/Shanghai
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && \
echo $TZ > /etc/timezone
|