Seraphim R. Pardee
10259ca924
Fix indentation. Use patched upload-artifact action. Update git URL in module. Divide workflows and give them order, add badges. Apparently workflow_run isn't supported yet... Update build to build container and push to registry. Fix some docker registry things. Use internal IPv4 for registry. Missed a spot. I think this order makes a difference. force HTTP use in login this? Use GITHUB_TOKEN instead. idk man i'm just gonna rebase this to clean the log Use a PAT. Copy files over correctly. blah
11 lines
147 B
Docker
11 lines
147 B
Docker
FROM golang:1.23
|
|
WORKDIR /app
|
|
|
|
COPY . ./
|
|
RUN go mod download
|
|
|
|
RUN CGO_ENABLED=0 GOOS=linux go build -o /bingo
|
|
|
|
EXPOSE 3005
|
|
CMD [ "/bingo", "run" ]
|