2022-10-31 21:46:34 +00:00
|
|
|
# Builder
|
2023-09-20 18:26:19 +00:00
|
|
|
FROM rust:1.72.1-buster as builder
|
2022-10-31 21:46:34 +00:00
|
|
|
|
|
|
|
WORKDIR /app
|
|
|
|
|
|
|
|
# Add extra build dependencies here
|
|
|
|
RUN apt-get update && apt-get install -y cmake
|
|
|
|
|
|
|
|
COPY . .
|
2023-09-19 11:49:32 +00:00
|
|
|
|
|
|
|
# Remove `--features stats` if you want to deploy without stats collection
|
|
|
|
RUN cargo install --path . --features stats
|
2022-10-31 21:46:34 +00:00
|
|
|
|
|
|
|
# Runtime
|
|
|
|
FROM debian:buster-slim
|
|
|
|
|
|
|
|
WORKDIR /app
|
|
|
|
|
|
|
|
# Add extra runtime dependencies here
|
|
|
|
RUN apt-get update && apt-get install -y openssl ca-certificates && rm -rf /var/lib/apt/lists/*
|
|
|
|
|
|
|
|
# Copy spoticord binary from builder
|
|
|
|
COPY --from=builder /usr/local/cargo/bin/spoticord ./spoticord
|
|
|
|
|
|
|
|
CMD ["./spoticord"]
|