Fix Dockerfile WORKDIR path
This commit is contained in:
parent
b57b818b67
commit
ce5647e730
|
@ -30,8 +30,8 @@ RUN apk update --quiet \
|
||||||
|
|
||||||
# add meilisearch and meilitool to the `/bin` so you can run it from anywhere
|
# add meilisearch and meilitool to the `/bin` so you can run it from anywhere
|
||||||
# and it's easy to find.
|
# and it's easy to find.
|
||||||
COPY --from=compiler /meilisearch/target/release/meilisearch /bin/meilisearch
|
COPY --from=compiler /target/release/meilisearch /bin/meilisearch
|
||||||
COPY --from=compiler /meilisearch/target/release/meilitool /bin/meilitool
|
COPY --from=compiler /target/release/meilitool /bin/meilitool
|
||||||
# To stay compatible with the older version of the container (pre v0.27.0) we're
|
# To stay compatible with the older version of the container (pre v0.27.0) we're
|
||||||
# going to symlink the meilisearch binary in the path to `/meilisearch`
|
# going to symlink the meilisearch binary in the path to `/meilisearch`
|
||||||
RUN ln -s /bin/meilisearch /meilisearch
|
RUN ln -s /bin/meilisearch /meilisearch
|
||||||
|
|
Loading…
Reference in New Issue