forgejo-todo-checker/Dockerfile
Paul Campbell 13a2b0c7c6
Some checks failed
Test / test (push) Failing after 18s
feat: use Dockerfile (hello world)
Given I want to implement the core login in Rust, I don't want to have a
rust compile step for each invocation. So use a Dockerfile and it will
be built and cached by each Fogejo Runner.
2024-09-17 16:32:40 +01:00

8 lines
178 B
Docker

FROM docker.io/rust:1.81.0-bookworm
WORKDIR /app
RUN cargo build --release && mv target/release/forgejo-todo-checker .
ENTRYPOINT [ "/app/forgejo-todo-checker" ]
# CMD [ "" ]