7 lines
161 B
Docker
7 lines
161 B
Docker
FROM python:3.9-slim-buster
|
|
|
|
RUN apt-get update && \
|
|
apt-get install -y --no-install-recommends jq php-json-schema asciidoctor pipenv git curl
|
|
|
|
CMD ["bash"]
|