Fix: Add missing FROM instruction to Dockerfile
Browse files- Dockerfile +3 -3
Dockerfile
CHANGED
|
@@ -1,4 +1,4 @@
|
|
| 1 |
-
|
| 2 |
-
|
| 3 |
-
|
| 4 |
COPY ./searxng /etc/searxng
|
|
|
|
| 1 |
+
FROM searxng/searxng:latest
|
| 2 |
+
|
| 3 |
+
# Copy custom SearXNG configuration
|
| 4 |
COPY ./searxng /etc/searxng
|