aboutgitcodelistschat:MatrixIRC
path: root/containerfiles/tests/eater/Containerfile
blob: 53e5b1c3392198063b467a1d0fafbec4061c1a8d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
FROM fedora:37

RUN mkdir -p /var/run/test-filters

COPY ./seitan-eater /usr/bin/seitan-eater
COPY ./tests-utils/test-syscalls /usr/local/bin/test-syscalls
# Filter without syscalls
COPY ./test.bpf /var/run/test-filters/test.bpf

# Make all test filter files reable by all users
RUN chmod -R 0777 /var/run/test-filters && \
	chmod 0777 /var/run/test-filters/*

ENTRYPOINT ["/usr/bin/seitan-eater"]