Skip to content

Instantly share code, notes, and snippets.

@allenheltondev
Created July 22, 2020 11:57
Show Gist options
  • Save allenheltondev/2bbfc5188afc0fa9461c3feb3b260532 to your computer and use it in GitHub Desktop.
Save allenheltondev/2bbfc5188afc0fa9461c3feb3b260532 to your computer and use it in GitHub Desktop.
Updated Dockerfile for Load Testing with Postman
FROM blazemeter/taurus
# taurus includes python and pip
RUN pip install --no-cache-dir awscli
# Taurus working directory = /bzt-configs
ADD ./load-test.sh /bzt-configs/
# Added json files for Postman support
ADD Collection.json .
ADD test.json .
RUN chmod 755 /bzt-configs/load-test.sh
ENTRYPOINT ["sh", "-c","./load-test.sh"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment