automation_rs/Dockerfile
Dreaded_X 79d13061c8
All checks were successful
Build and deploy automation_rs / Build (push) Successful in 5m13s
Build and deploy automation_rs / Create Docker container (push) Successful in 1m45s
Partial switch to Gitea Actions
2023-11-21 23:28:19 +01:00

9 lines
183 B
Docker

FROM gcr.io/distroless/cc-debian12:nonroot
ENV AUTOMATION_CONFIG=/app/config.yml
COPY ./config/config.yml /app/config.yml
COPY ./automation /app/automation
CMD ["/app/automation"]