4 lines
88 B
Docker
4 lines
88 B
Docker
FROM debian:slim as final
|
|
WORKDIR /app
|
|
COPY ./target/release/bin ./bin
|
|
CMD ["/app/bin"]
|