cuddle-image/templates/build_cuddle_image.Dockerfile
2022-08-11 23:10:39 +02:00

14 lines
261 B
Docker

FROM rust:1.62.1-slim-bullseye
RUN apt-get update && apt-get upgrade -y
RUN apt-get install -y build-essential curl git
WORKDIR /app/
RUN git clone https://git.front.kjuulh.io/kjuulh/cuddle.git
WORKDIR /app/cuddle/
RUN cargo build -p cuddle_cli --release