diff --git a/docker/tester/root/runners/deb.Dockerfile b/docker/tester/root/runners/deb.Dockerfile index 3cf93f4d..98bf4ed8 100644 --- a/docker/tester/root/runners/deb.Dockerfile +++ b/docker/tester/root/runners/deb.Dockerfile @@ -15,11 +15,6 @@ RUN dpkg -i /falco-${FALCO_VERSION}-x86_64.deb RUN sed -e 's/time_format_iso_8601: false/time_format_iso_8601: true/' < /etc/falco/falco.yaml > /etc/falco/falco.yaml.new \ && mv /etc/falco/falco.yaml.new /etc/falco/falco.yaml -# # The local container also copies some test trace files and -# # corresponding rules that are used when running regression tests. -# COPY source/testrules/*.yaml /rules/ -# COPY traces/*.scap /traces/ - VOLUME ["/rules"] VOLUME ["/traces"] diff --git a/docker/tester/root/runners/rpm.Dockerfile b/docker/tester/root/runners/rpm.Dockerfile index 4e935b36..cc9adbb5 100644 --- a/docker/tester/root/runners/rpm.Dockerfile +++ b/docker/tester/root/runners/rpm.Dockerfile @@ -16,11 +16,6 @@ RUN yum install -y /falco-${FALCO_VERSION}-x86_64.rpm RUN sed -e 's/time_format_iso_8601: false/time_format_iso_8601: true/' < /etc/falco/falco.yaml > /etc/falco/falco.yaml.new \ && mv /etc/falco/falco.yaml.new /etc/falco/falco.yaml -# # The local container also copies some test trace files and -# # corresponding rules that are used when running regression tests. -# COPY source/testrules/*.yaml /rules/ -# COPY traces/*.scap /traces/ - VOLUME ["/rules"] VOLUME ["/traces"]