💚 Fix dockerfile missing openssl during build

This commit is contained in:
LittleSheep 2024-02-13 20:51:39 +08:00
parent 46736c12b9
commit 804108a209

View File

@ -5,6 +5,7 @@ RUN apk add nodejs npm
WORKDIR /source WORKDIR /source
COPY . . COPY . .
RUN apk add libressl-dev
RUN cargo build --release RUN cargo build --release
# Runtime # Runtime