fuzzysearch/Dockerfile

14 lines
402 B
Docker
Raw Normal View History

2020-01-17 23:21:30 +00:00
FROM rust:1-slim AS builder
2020-01-17 23:13:24 +00:00
WORKDIR /src
ENV SQLX_OFFLINE=true
RUN apt-get update -y && apt-get install -y libssl-dev pkg-config
2020-01-17 23:13:24 +00:00
COPY . .
RUN cargo install --root / --path .
FROM debian:buster-slim
EXPOSE 8080
WORKDIR /app
RUN apt-get update -y && apt-get install -y openssl ca-certificates && rm -rf /var/lib/apt/lists/*
2020-01-17 23:13:24 +00:00
COPY --from=builder /bin/fuzzysearch /bin/fuzzysearch
CMD ["/bin/fuzzysearch"]