Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History
18 lines (14 loc) · 458 Bytes

File metadata and controls

18 lines (14 loc) · 458 Bytes
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
FROM rust:1.90.0-slim-bookworm AS build
ARG DEBIAN_FRONTEND=noninteractive
ADD . /app
WORKDIR /app
RUN apt-get update \
&& apt-get install -y pkg-config libssl-dev \
&& cargo build -p obo-cli --release
FROM debian:bookworm-slim
ARG DEBIAN_FRONTEND=noninteractive
RUN apt-get update \
&& apt-get install -y ca-certificates \
&& rm -rf /var/lib/apt/lists/
COPY --from=build /app/target/release/obo /usr/local/bin/
ENTRYPOINT ["/usr/local/bin/obo"]
Morty Proxy This is a proxified and sanitized view of the page, visit original site.