Skip to content

Commit

Permalink
0.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
AmaranthineCodices committed May 5, 2024
1 parent 5a8ba9b commit 219c6c4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "chrysanthemum"
version = "0.4.0"
version = "0.4.2"
edition = "2018"

[dependencies]
Expand Down
7 changes: 4 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
FROM rust:1.73 as builder
FROM rust:1.73-bookworm as builder

WORKDIR /usr/src/chrysanthemum
COPY ./src/ ./src/
COPY ./Cargo.lock ./Cargo.lock
COPY ./Cargo.toml ./Cargo.toml

RUN cargo install --path .

FROM debian:buster-slim
RUN apt-get update && apt-get install -y libssl-dev ca-certificates && rm -rf /var/lib/apt/lists/*
FROM debian:bookworm-slim
RUN apt-get update && apt-get install -y libssl3 ca-certificates && rm -rf /var/lib/apt/lists/*
COPY --from=builder /usr/local/cargo/bin/chrysanthemum /usr/local/bin/chrysanthemum
CMD ["chrysanthemum", "/var/chrysanthemum/chrysanthemum.cfg.yml"]

0 comments on commit 219c6c4

Please sign in to comment.