Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create Dockerfile.armv7 #353

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Adding build instructions
  • Loading branch information
r1ckr committed Feb 4, 2018
commit 1059f2e73f6caef23dcbeb6f18e0d9cba66664ed
7 changes: 7 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,21 @@ install:
# - DEBUG=1
before_script:
- image="kylemanna/openvpn"
- image_arm="kylemanna/openvpn-arm"
- docker build -t "$image" .
- docker build -f Dockerfile.armv7 -t "$image_arm" .
- docker inspect "$image"
- docker inspect "$image_arm"
- docker run --rm "$image" openvpn --version || true # why does it return 1?
- docker run --rm "$image_arm" openvpn --version || true # why does it return 1?
- docker run --rm "$image" openssl version
- docker run --rm "$image_arm" openssl version

script:
- official-images/test/run.sh "$image"
- test/run.sh "$image"
- official-images/test/run.sh "$image_arm"
- test/run.sh "$image_arm"

after_script:
- docker images