mirror of
https://github.com/yannh/kubeconform.git
synced 2026-02-11 05:59:22 +00:00
* support disabling ssl validation in openapi2jsonschema.py * added acceptance tests for disable ssl feature * speed up bats docker build
7 lines
221 B
Bash
7 lines
221 B
Bash
FROM python:3.9.7-alpine3.14
|
|
RUN apk --no-cache add bats
|
|
COPY requirements.txt /code/
|
|
RUN pip install -r /code/requirements.txt
|
|
COPY fixtures /code/fixtures
|
|
COPY acceptance.bats openapi2jsonschema.py /code/
|
|
WORKDIR /code
|