Archived
1
0
This repository has been archived on 2024-09-09. You can view files and clone it, but cannot push or open issues or pull requests.

23 lines
460 B
Bash
Raw Permalink Normal View History

2020-02-18 13:06:18 -05:00
#!/usr/bin/env bash
set -euo pipefail
main() {
cd "$(dirname "$0")/../.."
2020-02-18 23:31:40 -05:00
source ./ci/lib.sh
2020-02-18 19:06:35 -05:00
set_version
2020-02-18 13:06:18 -05:00
if [[ ${CI:-} ]]; then
echo "$DOCKER_PASSWORD" | docker login -u "$DOCKER_USERNAME" --password-stdin
fi
imageTag="codercom/code-server:$VERSION"
2020-02-19 00:27:02 -05:00
if [[ ${TRAVIS_CPU_ARCH:-} == "arm64" ]]; then
2020-02-18 13:06:18 -05:00
imageTag+="-arm64"
fi
2020-02-19 00:27:02 -05:00
docker build -t "$imageTag" -f ./ci/release-image/Dockerfile .
2020-02-18 13:06:18 -05:00
docker push codercom/code-server
}
main "$@"