bin/Dockerfile

5 lines
95 B
Docker
Raw Normal View History

2023-04-20 11:33:10 +02:00
FROM debian:stable-slim as final
2023-04-20 10:46:03 +02:00
WORKDIR /app
COPY ./target/release/bin ./bin
CMD ["/app/bin"]