-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[libFuzzer] Fix guided-fuzzing-daemon installation
- Loading branch information
1 parent
da7e8b7
commit dc7007e
Showing
4 changed files
with
24 additions
and
32 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 |
---|---|---|
|
@@ -6,26 +6,18 @@ FROM ubuntu:22.04 | |
|
||
LABEL maintainer Jesse Schwartzentruber <[email protected]> | ||
|
||
ENV LOGNAME worker | ||
ENV HOSTNAME taskcluster-worker | ||
ARG DEBIAN_FRONTEND=noninteractive | ||
|
||
RUN useradd -d /home/worker -s /bin/bash -m worker | ||
|
||
COPY recipes/linux/ /tmp/recipes/ | ||
COPY services/libfuzzer/setup.sh /tmp/recipes/ | ||
COPY services/fuzzing-decision /tmp/fuzzing-tc | ||
COPY base/linux/etc/pip.conf /etc/pip.conf | ||
RUN /tmp/recipes/setup.sh \ | ||
&& rm -rf /tmp/recipes /tmp/fuzzing-tc | ||
|
||
COPY services/libfuzzer/launch.sh /home/worker/ | ||
COPY services/libfuzzer/libfuzzer.sh /home/worker/ | ||
COPY services/libfuzzer/coverage.sh /home/worker/ | ||
COPY services/libfuzzer/setup-target.sh /home/worker/ | ||
&& rm -rf /tmp/recipes /tmp/fuzzing-tc | ||
|
||
ENV LANG en_US.UTF-8 | ||
ENV LC_ALL en_US.UTF-8 | ||
COPY services/libfuzzer/launch.sh \ | ||
services/libfuzzer/libfuzzer.sh \ | ||
services/libfuzzer/coverage.sh \ | ||
services/libfuzzer/setup-target.sh \ | ||
/home/worker/ | ||
|
||
WORKDIR /home/worker | ||
ENTRYPOINT ["/usr/local/bin/fuzzing-pool-launch"] | ||
|
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
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
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