Create Dockerfile
Browse files- Dockerfile +8 -0
Dockerfile
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
FROM searxng/searxng:latest
|
| 2 |
+
RUN mkdir /tmp/temp_searxng
|
| 3 |
+
COPY ./searxng /tmp/temp_searxng
|
| 4 |
+
RUN cp -R /tmp/temp_searxng/* /etc/searxng/
|
| 5 |
+
RUN chmod 777 /etc/searxng
|
| 6 |
+
ENV TZ=Asia/Shanghai
|
| 7 |
+
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && \
|
| 8 |
+
echo $TZ > /etc/timezone
|