You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- name: Build Docker image and test outbound calls during build
106
+
continue-on-error: true
107
+
run: |
108
+
# Create a Dockerfile that installs curl and makes outbound calls
109
+
cat <<EOF > Dockerfile
110
+
FROM ubuntu:latest
111
+
RUN apt-get update && apt-get install -y curl
112
+
RUN for i in {1..9}; do curl -I https://www.google.com && curl -I https://goreleaser.com; sleep 10; done
113
+
EOF
114
+
115
+
# Build the Docker image
116
+
docker build -t test-image .
117
+
118
+
# Print /etc/resolv.conf from the build container (temporary container used during build)
Copy file name to clipboardExpand all lines: README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -111,7 +111,7 @@ Includes all features in the **Community** tier, plus:
111
111
112
112
For a detailed comparison and more information, please visit our [Pricing Page](https://www.stepsecurity.io/pricing).
113
113
114
-
Explore the full feature set in the [Features Documentation](https://docs.stepsecurity.io/harden-runner/how-tos/enable-runtime-security/).
114
+
Explore the full feature set in the [Features Documentation](https://docs.stepsecurity.io/harden-runner).
0 commit comments