mirror of
https://github.com/trailofbits/buttercup
synced 2026-06-21 14:11:39 +00:00
ea2fd093d5
* Add documentation * Add janusgraph custom configuration. Simply graph creation. * Add properties to edges. Index on uri property. * reformat * Create libpng graph in a more reasonable amount of time. * Update README.md * Wrap indexing into function * updating... * update proto * fix command * Update settings for serve and processing indexing * Add dockerfile to docker container * Add trigger script * Fix error with loading graphml file * reformat * Remove resource constraints for program model * Change permissions of temp dir * Update readme * Update dockerignore --------- Co-authored-by: Evan Downing <2077950+evandowning@users.noreply.github.com>
18 lines
418 B
Docker
18 lines
418 B
Docker
ARG BASE_IMAGE=myorg/myapp:latest
|
|
FROM ${BASE_IMAGE}
|
|
|
|
COPY ./ccwrapper.sh ${SRC}/ccwrapper.sh
|
|
COPY ./cxxwrapper.sh ${SRC}/cxxwrapper.sh
|
|
RUN chmod +x ${SRC}/ccwrapper.sh && chmod +x ${SRC}/cxxwrapper.sh
|
|
|
|
ENV FUZZING_LANGUAGE=c++
|
|
|
|
ENV ORIG_CXX=${CXX}
|
|
ENV ORIG_CC=${CC}
|
|
ENV CXX=${SRC}/cxxwrapper.sh
|
|
ENV CCC=${SRC}/cxxwrapper.sh
|
|
ENV CC=${SRC}/ccwrapper.sh
|
|
|
|
COPY gzs/kythe/ ${SRC}/kythe
|
|
ENV KYTHE_RELEASE_DIR=${SRC}/kythe/
|