Skip to content

Commit

Permalink
fix(serverless): install libssl in container
Browse files Browse the repository at this point in the history
  • Loading branch information
anbraten committed Dec 15, 2023
1 parent 8ba8967 commit 6058266
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docker/Dockerfile.serverless
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ COPY . .
COPY --from=js-runtime /app/dist/index.js /app/crates/runtime_isolate/runtime.js
RUN cargo build --release --bin lagon-serverless

FROM debian:bullseye-slim AS runtime
FROM chef AS runtime
WORKDIR /app
RUN apt-get update -y \
&& apt-get install -y ca-certificates \
&& apt-get install -y ca-certificates libssl1.0 libssl-dev \
&& apt-get autoremove -y \
&& apt-get clean -y \
&& rm -rf /var/lib/apt/lists/*
Expand Down

0 comments on commit 6058266

Please sign in to comment.