Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

FR: Add Dockerfile #9

Open
failable opened this issue Aug 31, 2024 · 1 comment
Open

FR: Add Dockerfile #9

failable opened this issue Aug 31, 2024 · 1 comment

Comments

@failable
Copy link

Add Dockerfile for easier deployment.

@failable
Copy link
Author

Tried to tweak one

FROM lukemathwalker/cargo-chef:latest-rust-1 AS chef
WORKDIR /app

FROM chef AS planner
COPY . .
RUN cargo chef prepare --recipe-path recipe.json

FROM chef AS builder
COPY --from=planner /app/recipe.json recipe.json
RUN cargo chef cook --release --recipe-path recipe.json
COPY . .
RUN cargo build --release --bin agent-panel

FROM debian:bookworm-slim AS runtime
WORKDIR /app
COPY --from=builder /app/target/release/agent-panel /usr/local/bin/

COPY config.yaml /app/config.yaml
ENV PORT "${PORT:-8972}"
ENV CONFIG_DIR "${CONFIG_DIR:-./config.yaml}"

ENTRYPOINT ["/usr/local/bin/agent-panel", "--port", "${PORT}"]

But can not start the container and no error is output.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant