2022-08-11 23:10:39 +02:00
|
|
|
FROM rust:1.62.1-slim-bullseye
|
|
|
|
|
|
|
|
RUN apt-get update && apt-get upgrade -y
|
|
|
|
|
2022-08-11 23:22:12 +02:00
|
|
|
RUN apt-get install libssl-dev
|
|
|
|
RUN apt-get install -y -q build-essential curl git pkg-config
|
2022-08-11 23:10:39 +02:00
|
|
|
|
|
|
|
WORKDIR /app/cuddle/
|
|
|
|
|
2022-08-11 23:22:12 +02:00
|
|
|
RUN cargo install --git https://git.front.kjuulh.io/kjuulh/cuddle.git cuddle_cli
|