You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Python module packaging is not in requirements.txt, yet it is needed to run bzt with gatling executor from a docker container.
Run docker build . in a folder with a basic dockerfile (see below). It will fail with ERROR: ModuleNotFoundError: No module named 'packaging'. If you use pip to install packaging, for example by replacing RUN pip install bzt==$TAURUS_VERSION with RUN pip install bzt==$TAURUS_VERSION packaging, it will work fine.
Example Dockerfile:
FROM ubuntu:22.04
RUN apt-get update
RUN apt-get -y install openjdk-11-jdk pip
ENV TAURUS_VERSION="1.16.34"
RUN pip install bzt==$TAURUS_VERSION
RUN bzt https://google.com -o execution.0.executor=gatling
The text was updated successfully, but these errors were encountered:
Python module
packaging
is not inrequirements.txt
, yet it is needed to run bzt with gatling executor from a docker container.Run
docker build .
in a folder with a basic dockerfile (see below). It will fail withERROR: ModuleNotFoundError: No module named 'packaging'
. If you use pip to install packaging, for example by replacingRUN pip install bzt==$TAURUS_VERSION
withRUN pip install bzt==$TAURUS_VERSION packaging
, it will work fine.Example Dockerfile:
The text was updated successfully, but these errors were encountered: