automation_rs/Dockerfile
Dreaded_X 697fce8cb3
Some checks failed
Build and deploy automation_rs / Build (push) Successful in 5m22s
Build and deploy automation_rs / Create Docker container (push) Failing after 2m39s
Partial switch to Gitea Actions
2023-11-21 01:22:17 +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"]