mirror of
				https://github.com/meilisearch/meilisearch.git
				synced 2025-11-04 01:46:28 +00:00 
			
		
		
		
	- Move the meilisearch binary to `/bin/meilisearch` so it's always in scope. - Create a `meili_data` directory used as the default working directory
		
			
				
	
	
		
			47 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			47 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Docker
		
	
	
	
	
	
# Compile
 | 
						||
FROM    rust:alpine3.14 AS compiler
 | 
						||
 | 
						||
RUN     apk add -q --update-cache --no-cache build-base openssl-dev
 | 
						||
 | 
						||
WORKDIR /meilisearch
 | 
						||
 | 
						||
ARG     COMMIT_SHA
 | 
						||
ARG     COMMIT_DATE
 | 
						||
ENV     COMMIT_SHA=${COMMIT_SHA} COMMIT_DATE=${COMMIT_DATE}
 | 
						||
ENV     RUSTFLAGS="-C target-feature=-crt-static"
 | 
						||
 | 
						||
COPY    . .
 | 
						||
RUN     set -eux; \
 | 
						||
        apkArch="$(apk --print-arch)"; \
 | 
						||
        if [ "$apkArch" = "aarch64" ]; then \
 | 
						||
            export JEMALLOC_SYS_WITH_LG_PAGE=16; \
 | 
						||
        fi && \
 | 
						||
        cargo build --release
 | 
						||
 | 
						||
# Run
 | 
						||
FROM    alpine:3.14
 | 
						||
 | 
						||
ENV     MEILI_HTTP_ADDR 0.0.0.0:7700
 | 
						||
ENV     MEILI_SERVER_PROVIDER docker
 | 
						||
 | 
						||
RUN     apk update --quiet \
 | 
						||
        && apk add -q --no-cache libgcc tini curl
 | 
						||
 | 
						||
# add meilisearch to the `/bin` so you can run it from anywhere and it's easy
 | 
						||
# to find.
 | 
						||
COPY    --from=compiler /meilisearch/target/release/meilisearch /bin/meilisearch
 | 
						||
# 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`
 | 
						||
RUN     ln -s /bin/meilisearch /meilisearch
 | 
						||
 | 
						||
# This directory should hold all the data related to meilisearch so we're going
 | 
						||
# to move our PWD in there.
 | 
						||
# We don't want to put the meilisearch binary
 | 
						||
WORKDIR /meili_data
 | 
						||
 | 
						||
 | 
						||
EXPOSE  7700/tcp
 | 
						||
 | 
						||
ENTRYPOINT ["tini", "--"]
 | 
						||
CMD     /bin/meilisearch
 |