updated Pipeline

This commit is contained in:
Paul Zinselmeyer 2023-05-01 21:01:48 +02:00
parent 40060daaf5
commit 603149c46e
Signed by: pfzetto
GPG key ID: 4EEF46A5B276E648
2 changed files with 3 additions and 3 deletions

View file

@ -27,7 +27,7 @@ cargo-build:
- .cargo/registry/cache/ - .cargo/registry/cache/
artifacts: artifacts:
paths: paths:
- target/release/bin - target/release/stromsensor_mailer
docker: docker:
stage: pack stage: pack

View file

@ -1,5 +1,5 @@
FROM debian:stable-slim as final FROM debian:stable-slim as final
WORKDIR /app WORKDIR /app
COPY ./target/release/bin ./bin COPY ./target/release/stromsensor_mailer ./stromsensor_mailer
CMD ["/app/bin"] CMD ["/app/stromsensor_mailer"]