Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save STashakkori/673c3f8806704fb0eacac81bb406be80 to your computer and use it in GitHub Desktop.
Save STashakkori/673c3f8806704fb0eacac81bb406be80 to your computer and use it in GitHub Desktop.
note
FROM debian:buster-slim
RUN apt-get update && apt-get install -y ca-certificates && rm -rf /var/lib/apt/lists/*
WORKDIR /usr/src/app
COPY ./target/release/rust_app .
RUN chmod +x rust_app
CMD ["./rust_app"]
# In shell:
# docker build -t rust-app-image .
# docker run --name rust-app-container -d rust-app-image
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment