mirror of
https://github.com/certbot/certbot.git
synced 2026-05-04 17:25:37 -04:00
* Integrate original adferrand/certbot-docker * Make build.sh more symetric for readability * Update README.md Co-Authored-By: Joona Hoikkala <joohoi@users.noreply.github.com> * Update README.md Co-Authored-By: Joona Hoikkala <joohoi@users.noreply.github.com> * Add post_push hooks to update the latest tag * Create error on build * Revert "Create error on build" This reverts commit d578d67130d3a0c4db7756209b0ade52953041a3. * Update deploy.sh * Fix deploy.sh with hotfixes versions * Fix deploy.sh toward certbot version and release branch * Enable push
5 lines
164 B
Bash
5 lines
164 B
Bash
#!/bin/bash
|
|
set -ex
|
|
|
|
CERTBOT_VERSION=${DOCKER_TAG//v/}
|
|
docker build --build-arg CERTBOT_VERSION=${CERTBOT_VERSION} -f ../core/Dockerfile -t certbot/certbot ../core
|