diff options
-rw-r--r-- | .github/workflows/docker-image-release.yml | 3 | ||||
-rw-r--r-- | Dockerfile | 8 |
2 files changed, 6 insertions, 5 deletions
diff --git a/.github/workflows/docker-image-release.yml b/.github/workflows/docker-image-release.yml index 1067b69..db68385 100644 --- a/.github/workflows/docker-image-release.yml +++ b/.github/workflows/docker-image-release.yml @@ -44,9 +44,10 @@ jobs: # Build and tag Docker image - name: Build Docker image run: | - docker build -t ${{ secrets.DOCKER_USERNAME }}/donetick:${{ github.sha }} . + docker build -t ${{ secrets.DOCKER_USERNAME }}/my-go-app:${{ github.sha }} . # Push Docker image - name: Push Docker image run: | docker push ${{ secrets.DOCKER_USERNAME }}/donetick:${{ github.sha }} + docker push ${{ secrets.DOCKER_USERNAME }}/donetick:latest @@ -7,7 +7,7 @@ COPY go.mod go.sum ./ RUN go mod download && go mod verify COPY . . -RUN CGO_ENABLED=1 GOOS=linux go build -ldflags="-s -w " -buildvcs=false -o /donetick-core - -EXPOSE 8080 -CMD ["donetick-core"]
\ No newline at end of file +RUN CGO_ENABLED=1 GOOS=linux go build -ldflags="-s -w " -buildvcs=false -o /donetick +ENV DT_ENV="selfhosted" +EXPOSE 2021 +CMD ["donetick"]
\ No newline at end of file |