fix: install libssk-dev to compile openssl #22

Merged
realaravinth merged 2 commits from fix-docker into master 2023-11-05 02:04:40 +05:30
Showing only changes of commit 0ba21e184d - Show all commits

View file

@ -10,7 +10,7 @@ RUN make frontend
FROM rust:1-slim-bookworm as rust
WORKDIR /src
RUN apt-get update && apt-get install -y git
RUN apt-get update && apt-get install -y git libssl-dev
COPY . /src
COPY --from=frontend /src/static/cache/bundle /src/static/cache/bundle
RUN cargo build --release