Pierre Hubert
89c62c0f2f
All checks were successful
continuous-integration/drone/push Build is passing
11 lines
194 B
Bash
Executable File
11 lines
194 B
Bash
Executable File
#!/bin/bash
|
|
cargo build --release
|
|
|
|
TEMP_DIR=$(mktemp -d)
|
|
cp target/release/oidc-test-client "$TEMP_DIR"
|
|
|
|
docker build -f Dockerfile "$TEMP_DIR" -t pierre42100/oidc_test_client
|
|
|
|
rm -r $TEMP_DIR
|
|
|