bfbf0e347b
Add jobs to build, upload, and promote a gitea image to Docker Hub. This produces two images (gitea and openssh) from a single Dockerfile via a multi-stage build. Change-Id: I8e6136787f75cd69b881b7ac715418c86d356872
8 lines
87 B
Bash
Executable File
8 lines
87 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
# Generate host keys if necessary
|
|
/etc/s6/openssh/setup
|
|
|
|
exec "$@"
|