We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 054067a commit f4b14c1Copy full SHA for f4b14c1
Makefile
@@ -1,7 +1,6 @@
1
2
SHELL := /bin/bash
3
REPO_NAME := openai-hello-world
4
-TAGNAME := "test"
5
6
ifeq ($(OS),Windows_NT)
7
PYTHON = python.exe
@@ -78,9 +77,9 @@ docker-build:
78
77
79
docker-push:
80
source .env && \
81
- docker tag ${DOCKERHUB_USERNAME}/${REPO_NAME} ${DOCKERHUB_USERNAME}/${REPO_NAME}:${TAGNAME} && \
+ docker tag ${DOCKERHUB_USERNAME}/${REPO_NAME} ${DOCKERHUB_USERNAME}/${REPO_NAME}:latest && \
82
echo "${DOCKERHUB_ACCESS_TOKEN}" | docker login --username=${DOCKERHUB_USERNAME} --password-stdin && \
83
- docker push ${DOCKERHUB_USERNAME}/${REPO_NAME}:${TAGNAME}
+ docker push ${DOCKERHUB_USERNAME}/${REPO_NAME}:latest
84
85
docker-run:
86
0 commit comments