Skip to content

Commit

Permalink
Add jsonschema python package to the dockerfile.
Browse files Browse the repository at this point in the history
  • Loading branch information
Adam Galecki authored and kwesolowski committed Mar 20, 2023
1 parent 9bcb957 commit 44af335
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ RUN set -x -e; \
apt-get -y install --no-install-recommends python3-distutils protobuf-compiler; \
wget -q https://bootstrap.pypa.io/pip/3.6/get-pip.py; \
python3 get-pip.py; \
pip3 install dataclasses Jinja2 protobuf pytest xmlschema lxml; \
pip3 install dataclasses Jinja2 protobuf pytest xmlschema lxml jsonschema; \
rm -rf get-pip.py /var/lib/apt/lists/*

# Python 3.8
Expand All @@ -108,7 +108,7 @@ RUN set -x -e; \
apt-get -y install --no-install-recommends python3.8 python3.8-distutils; \
wget -q https://bootstrap.pypa.io/get-pip.py; \
python3.8 get-pip.py; \
python3.8 -m pip install dataclasses Jinja2 protobuf pytest xmlschema lxml; \
python3.8 -m pip install dataclasses Jinja2 protobuf pytest xmlschema lxml jsonschema; \
rm -rf get-pip.py /var/lib/apt/lists/*

COPY entrypoint.py /usr/local/bin/entrypoint
Expand Down

0 comments on commit 44af335

Please sign in to comment.