10 lines
238 B
Docker
10 lines
238 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
|
|
|
|
CMD [ "target/release/user-svc-actix" ] |