s2o 0.6.0

A command line tool to convert swagger (OpenAPI) v2 to OpenAI code format
Documentation
1
2
3
4
5
6
7
8
9
10
FROM rust:latest as builder


WORKDIR /app
COPY cargo.toml cargo.lock ./
COPY src ./src
RUN cargo build

FROM builder as runtime
COPY --from=builder /app/target/debug/swagger_to_openai /app/swagger_to_openai