* Dockerfile to 3.9 * Python version * More python updates * 3.9 on GitHub actions and lint updates * Test out 3.9.11 on GitHub actions * install python with an action * formatting: newline * Also has python code * only check first level for changed modules Previous example (source-google-search-console/credentials) * Test failure: there is no logger.trace
12 lines
267 B
Docker
12 lines
267 B
Docker
FROM python:3.9-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"]
|