mirror of
https://git.roussel.pro/telecom-paris/pact.git
synced 2026-02-09 02:20:17 +01:00
5 lines
146 B
Docker
5 lines
146 B
Docker
FROM alpine:latest
|
|
RUN apk add --no-cache sysbench
|
|
WORKDIR /app
|
|
COPY benchmark_script.sh /app/benchmark_script.sh
|
|
CMD ["sh","benchmark_script.sh"] |