mirror of
https://github.com/mTvare6/hello-world.rs.git
synced 2025-07-01 00:26:27 +00:00
15 lines
229 B
Docker
15 lines
229 B
Docker
FROM rust:1.31
|
|
|
|
MAINTAINER 'mTvare6' <https://github.com/mTvare6/hello-world.rs>
|
|
|
|
LABEL maintainer="mTvare6"
|
|
|
|
LABEL memory_safe=true
|
|
|
|
WORKDIR /usr/src/hello-world
|
|
COPY . .
|
|
|
|
RUN cargo install --path .
|
|
|
|
ENTRYPOINT ["hello-world"]
|
|
|