FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
openapi-spec-validator/Dockerfile at master · python-openapi/openapi-spec-validator · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
python-openapi
/
openapi-spec-validator
Public
Uh oh!
There was an error while loading.
Please reload this page
.
Notifications
You must be signed in to change notification settings
Fork
74
Star
407
Code
Issues
39
Pull requests
12
Discussions
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Discussions
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
openapi-spec-validator
/
Dockerfile
Copy path
More file actions
More file actions
Latest commit
History
History
History
21 lines (13 loc) · 603 Bytes
Breadcrumbs
openapi-spec-validator
/
Dockerfile
Copy path
File metadata and controls
21 lines (13 loc) · 603 Bytes
Raw
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
19
20
21
ARG
OPENAPI_SPEC_VALIDATOR_VERSION=0.9.0
FROM
python:3.14.5-alpine as builder
ARG
OPENAPI_SPEC_VALIDATOR_VERSION
ENV
CARGO_REGISTRIES_CRATES_IO_PROTOCOL=sparse
RUN
apk add --no-cache cargo
RUN
python -m pip wheel --wheel-dir /wheels openapi-spec-validator==${OPENAPI_SPEC_VALIDATOR_VERSION}
FROM
python:3.14.5-alpine
ARG
OPENAPI_SPEC_VALIDATOR_VERSION
COPY
--from=builder /wheels /wheels
RUN
apk add --no-cache libgcc
RUN
pip install --no-cache-dir --pre --find-links /wheels openapi-spec-validator==${OPENAPI_SPEC_VALIDATOR_VERSION} && \
rm -r /wheels
ENTRYPOINT
[
"openapi-spec-validator"
]
Back
|
FazBrowse Home
|
New Git URL