From c1f3bd96ab7c060b94375f81553a888a9488cc9a Mon Sep 17 00:00:00 2001 From: Untone Date: Mon, 8 Apr 2024 20:06:25 +0300 Subject: [PATCH] rust-image --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 4644a6e..881569f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM rustlang/rust as build +FROM rust as build # had to add this for open-ssl RUN apt-get update -y && \ @@ -23,7 +23,7 @@ COPY ./src ./src RUN rm ./target/release/deps/presence* RUN cargo build --release -FROM rustlang/rust +FROM rust ENV RUST_BACKTRACE=full RUN apt-get update && apt install -y openssl libssl-dev