You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 3, 2024. It is now read-only.
Running docker build . in the temporalite root folder when it is checked out as a submodule should complete with success and yield a temporalite image.
Actual Behavior
error obtaining VCS status: exit status 128 Use -buildvcs=false to disable VCS stamping.
~/temporal-ts-example/temporalite$ docker build .
Sending build context to Docker daemon 248.8kB
Step 1/10 : FROM golang:1.18 as builder
---> 5fedf7be08ce
Step 2/10 : WORKDIR ${GOPATH:-/go}/src/temporalite
---> Using cache
---> 6eade41865ba
Step 3/10 : COPY . .
---> 07766e30a072
Step 4/10 : RUN go mod download
---> Running in 9cae528d1223
Removing intermediate container 9cae528d1223
---> b1e44ea7077d
Step 5/10 : RUN go get -d -v ./...
---> Running in 23828201d0e2
Removing intermediate container 23828201d0e2
---> b523f95c1c35
Step 6/10 : RUN go build -o ${GOPATH:-/go}/bin/ ${GOPATH:-/go}/src/temporalite/cmd/temporalite
---> Running in c13724713caf
error obtaining VCS status: exit status 128
Use -buildvcs=false to disable VCS stamping.
The command '/bin/sh -c go build -o ${GOPATH:-/go}/bin/ ${GOPATH:-/go}/src/temporalite/cmd/temporalite' returned a non-zero code: 1
Expected Behavior
Running
docker build .
in the temporalite root folder when it is checked out as a submodule should complete with success and yield a temporalite image.Actual Behavior
error obtaining VCS status: exit status 128
Use -buildvcs=false to disable VCS stamping.
Steps to Reproduce the Problem
git init
)git submodule add https://github.com/temporalio/temporalite.git
cd temporalite && docker build .
Specifications
The text was updated successfully, but these errors were encountered: