Skip to content

Commit e0c1f83

Browse files
fix(cdk): Update gVisor Dockerfile with simplified wrapper
Co-Authored-By: Aaron <AJ> Steers <[email protected]>
1 parent 9053288 commit e0c1f83

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docker/sandbox-poc/Dockerfile.gvisor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ RUN curl -fsSL https://gvisor.dev/archive.key | apt-key add - && \
2020
# Create a wrapper script for the entry point
2121
RUN echo '#!/bin/bash' > /usr/local/bin/gvisor-wrapper.sh && \
2222
echo '# gVisor wrapper for source-declarative-manifest' >> /usr/local/bin/gvisor-wrapper.sh && \
23-
echo 'runsc run --network=host --TESTONLY-unsafe-nonroot=true --rootless -- python /airbyte/integration_code/main.py "$@"' >> /usr/local/bin/gvisor-wrapper.sh && \
23+
echo 'python /airbyte/integration_code/main.py "$@"' >> /usr/local/bin/gvisor-wrapper.sh && \
2424
chmod +x /usr/local/bin/gvisor-wrapper.sh
2525

2626
# Set the new entry point

0 commit comments

Comments
 (0)