-
Notifications
You must be signed in to change notification settings - Fork 3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
99dbe00
commit 246ec42
Showing
2 changed files
with
6 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,12 @@ | ||
FROM python:3.6.6-alpine3.8 | ||
|
||
RUN apk --no-cache add g++ \ | ||
RUN apk --no-cache add g++ \ | ||
&& apk --no-cache add zeromq-dev \ | ||
&& pip install locustio pyzmq | ||
|
||
COPY docker_start.sh docker_start.sh | ||
RUN chmod +x docker_start.sh | ||
|
||
EXPOSE 8089 5557 5558 | ||
|
||
ENTRYPOINT ["/usr/local/bin/locust"] | ||
ENTRYPOINT ["./docker_start.sh"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters