1
0
mirror of synced 2026-01-01 00:02:54 -05:00
Files
airbyte/tools/openapi2jsonschema/Dockerfile
Dmytro 8d2cd1e798 🎉 Tool for generation catalog schema from OpenAPI definition file (#5734)
* Add tool for generating catalog json schema from openapi definition file
2021-09-01 21:35:43 +03:00

12 lines
267 B
Docker

FROM python:3.7-slim
RUN apt-get update && apt-get install -y git && rm -rf /var/lib/apt/lists/*
RUN pip install git+https://github.com/airbytehq/openapi2jsonschema.git@v0.1
RUN mkdir -p /schemas
WORKDIR /schemas
ENTRYPOINT ["/usr/local/bin/openapi2jsonschema"]