mirror of
https://github.com/meilisearch/meilisearch.git
synced 2024-11-23 02:27:40 +08:00
04c2b37d82
Add gh actions for cargo check using rust nightly Add readme about actions workflows Add basic Dockerfile Add action workflow for docker publish Change check action to test action Update workflow readme without rust nightly Rename test action file Add gh actions to push latest docker image from master Update github action for publish docker image Add 2 steps dockerfile based on alpine Update readme badges to match new CI
29 lines
561 B
Docker
29 lines
561 B
Docker
# Compile
|
|
FROM alpine:3.10 AS compiler
|
|
|
|
RUN apk update --quiet
|
|
RUN apk add curl
|
|
RUN apk add build-base
|
|
RUN apk add libressl-dev
|
|
|
|
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
|
|
|
|
WORKDIR /meilisearch
|
|
|
|
COPY . .
|
|
|
|
ENV RUSTFLAGS="-C target-feature=-crt-static"
|
|
|
|
RUN $HOME/.cargo/bin/cargo build --release
|
|
|
|
# Run
|
|
FROM alpine:3.10
|
|
|
|
RUN apk update --quiet
|
|
RUN apk add libressl
|
|
RUN apk add build-base
|
|
|
|
COPY --from=compiler /meilisearch/target/release/meilidb-http .
|
|
|
|
CMD ./meilidb-http
|