automation_rs/Dockerfile
Dreaded_X 4f372aa9f0
All checks were successful
Build and deploy / Build application (push) Successful in 3m22s
Build and deploy / Build container (push) Successful in 56s
Build and deploy / Deploy container (push) Has been skipped
WIP: Made config modular
2024-11-30 06:35:36 +01:00

9 lines
168 B
Docker

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