mirror of
https://github.com/simdjson/simdjson
synced 2026-06-08 17:27:07 +00:00
11 lines
242 B
Docker
11 lines
242 B
Docker
# docker build -t simdjson . && docker run --privileged -t simdjson
|
|
FROM gcc:8.3
|
|
COPY . /usr/src/
|
|
WORKDIR /usr/src/
|
|
RUN make clean
|
|
RUN make amalgamate
|
|
RUN make
|
|
RUN make test
|
|
RUN make parsingcompetition
|
|
CMD ["bash", "scripts/selectparser.sh"]
|