mirror of
https://github.com/yannh/kubeconform.git
synced 2026-02-11 05:59:22 +00:00
6 lines
203 B
Bash
6 lines
203 B
Bash
FROM python:3.9.7-alpine3.14
|
|
RUN apk --no-cache add bats
|
|
COPY acceptance.bats openapi2jsonschema.py requirements.txt /code/
|
|
COPY fixtures /code/fixtures
|
|
WORKDIR /code
|
|
RUN pip install -r requirements.txt
|