automation_rs/Dockerfile
Dreaded_X 69991dd457
Some checks failed
Build and deploy automation_rs / Build (push) Successful in 4m35s
Build and deploy automation_rs / Create Docker container (push) Failing after 2m27s
Partial switch to Gitea Actions
2023-11-21 01:14:38 +01:00

9 lines
223 B
Docker

FROM gcr.io/distroless/cc-debian12:nonroot
ENV AUTOMATION_CONFIG=/app/config.yml
COPY ./config/config.yml /app/config.yml
COPY ./target/x86_64-unknown-linux-gnu/release/automation /app/automation
CMD ["/app/automation"]