diff --git a/Dockerfile b/Dockerfile index b7c063d..f7a3835 100644 --- a/Dockerfile +++ b/Dockerfile @@ -26,10 +26,13 @@ RUN cargo build --release FROM rust ENV RUST_BACKTRACE=full +ENV RUST_LOG=debug + RUN apt-get update && apt install -y openssl libssl-dev COPY --from=build /quoter/target/release/quoter . +ENV PORT=8080 EXPOSE 8080 CMD ["./quoter"]