Update Dockerfile
Browse files- Dockerfile +4 -2
Dockerfile
CHANGED
@@ -18,10 +18,12 @@ RUN apk upgrade --no-cache \
|
|
18 |
|
19 |
RUN git clone https://github.com/searxng/searxng-docker
|
20 |
|
|
|
|
|
21 |
ENV COMPOSE_VERSION=1.29.2
|
22 |
|
23 |
-
RUN curl -L "https://github.com/docker/compose/releases/download/${COMPOSE_VERSION}/docker-compose-$(uname -s)-$(uname -m)" -o
|
24 |
-
&& chmod +x
|
25 |
|
26 |
|
27 |
RUN sed -i "s|ultrasecretkey|$(openssl rand -hex 32)|g" searxng/settings.yml
|
|
|
18 |
|
19 |
RUN git clone https://github.com/searxng/searxng-docker
|
20 |
|
21 |
+
WORKDIR /code/searxng-docker
|
22 |
+
|
23 |
ENV COMPOSE_VERSION=1.29.2
|
24 |
|
25 |
+
RUN curl -L "https://github.com/docker/compose/releases/download/${COMPOSE_VERSION}/docker-compose-$(uname -s)-$(uname -m)" -o docker-compose \
|
26 |
+
&& chmod +x docker-compose
|
27 |
|
28 |
|
29 |
RUN sed -i "s|ultrasecretkey|$(openssl rand -hex 32)|g" searxng/settings.yml
|