10 lines
216 B
Docker
10 lines
216 B
Docker
FROM rust:1.61.0 as builder
|
|
# 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/test_weather_data"]
|