cuddle-image/templates/build_cuddle_image.Dockerfile

14 lines
261 B
Docker
Raw Normal View History

2022-08-11 23:10:39 +02:00
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