Skip to content

Commit dcdb6e1

Browse files
committed
Add Makefile and VERSION file
1 parent 533b048 commit dcdb6e1

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed

Makefile

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
REGISTRY_HOST=ghcr.io
2+
USERNAME=apptweak
3+
PROJECT=simple-proxy-rotator
4+
VERSION := $(shell cat VERSION)
5+
IMAGE=$(REGISTRY_HOST)/$(USERNAME)/$(PROJECT):$(VERSION)
6+
7+
build:
8+
docker build --platform "linux/x86_64" --tag "$(IMAGE)" -f Dockerfile .
9+
# read --local --silent --prompt "Docker account's password: " passwd
10+
# echo "$passwd" | docker login --username apptweakci --password-stdin
11+
# gh auth token | docker login --username apptweakci --password-stdin ${IMAGE}
12+
docker push "$(IMAGE)"
13+

VERSION

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
stable

0 commit comments

Comments
 (0)