user-svc/Dockerfile

11 lines
256 B
Docker

# 1. This tells docker to use the Rust official image
FROM rust:1.62
# 2. Copy the files in your machine to the Docker image
COPY ./ ./
# Build your program for release
RUN cargo build --release
# Run the binary
CMD ["./target/release/user-svc-actix"]