diff --git a/Dockerfile b/Dockerfile index c56aabc..80720dd 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,15 +1,15 @@ FROM rust:buster as builder -COPY . /app -WORKDIR /app - RUN rustup default nightly -RUN cargo build --release RUN git clone "https://github.com/Y2Z/monolith" /monolith WORKDIR /monolith RUN cargo build --release +COPY . /app +WORKDIR /app +RUN cargo build --release + FROM debian:buster RUN apt-get update && apt-get upgrade -y