mirror of https://github.com/knative/docs.git
18 lines
375 B
Docker
18 lines
375 B
Docker
# Use the official Rust image.
|
|
# https://hub.docker.com/_/rust
|
|
FROM rust:1.27.0
|
|
|
|
# Copy local code to the container image.
|
|
WORKDIR /usr/src/app
|
|
COPY . .
|
|
|
|
# Install production dependencies and build a release artifact.
|
|
RUN cargo install
|
|
|
|
# Configure and document the service HTTP port.
|
|
ENV PORT 8080
|
|
EXPOSE $PORT
|
|
|
|
# Run the web service on container startup.
|
|
CMD ["hellorust"]
|