mirror of
https://github.com/pomerium/pomerium.git
synced 2025-06-22 04:28:25 +02:00
6 lines
141 B
Bash
Executable file
6 lines
141 B
Bash
Executable file
#!/bin/sh -e
|
|
|
|
FULL_IMAGE_NAME=${1:-pomerium/pomerium}
|
|
DOCKERFILE=${2:-Dockerfile}
|
|
|
|
docker build -t "${FULL_IMAGE_NAME}" -f "${DOCKERFILE}" .
|