cuddle-rust-plan/templates/build_release.Dockerfile
2022-08-21 16:51:52 +02:00

12 lines
200 B
Docker

FROM rust:1.62.1-slim-buster
RUN apt-get update && apt-get upgrade -y
RUN apt-get install libssl-dev
RUN apt-get install -y -q build-essential curl
COPY . .
RUN cargo build
CMD [ "cargo", "run" ]