Skip to content

Commit

Permalink
bug: fix prod deployment issues
Browse files Browse the repository at this point in the history
  • Loading branch information
ibuildthecloud committed Oct 19, 2024
1 parent 6d20913 commit 440077f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ RUN --mount=type=cache,target=/root/.cache/go-build \
go build -o otto8 main.go

# Second Stage: Final
FROM cgr.dev/chainguard/wolfi-base
FROM ubuntu:22.04

RUN apk add --no-cache git tini
RUN apt-get update && apt install -y git tini

# Copy the compiled application from the builder stage
COPY --link --from=builder /app/otto8 /bin/
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ replace (
require (
github.com/MicahParks/keyfunc/v3 v3.3.5
github.com/acorn-io/baaah v0.0.0-20241017212231-096ce8555b5f
github.com/acorn-io/mink v0.0.0-20241017214326-9ad08ca68c7a
github.com/acorn-io/mink v0.0.0-20241019043522-c80c1a36ee59
github.com/adrg/xdg v0.5.1
github.com/dustin/go-humanize v1.0.1
github.com/fatih/color v1.17.0
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,8 @@ github.com/acorn-io/baaah v0.0.0-20241017212231-096ce8555b5f h1:T6XYeXfrspHSwOCJ
github.com/acorn-io/baaah v0.0.0-20241017212231-096ce8555b5f/go.mod h1:FTdfwOSepj32acbdMwoqe5pwFTYhNG0UQhCXxgHuEzM=
github.com/acorn-io/broadcaster v0.0.0-20240105011354-bfadd4a7b45d h1:hfpNQkJ4I2b8+DbMr8m97gG67ku0uPsMzUfskVu3cHU=
github.com/acorn-io/broadcaster v0.0.0-20240105011354-bfadd4a7b45d/go.mod h1:WF6FYrEqW0+ZtY5OKb21JhSL0aeL5VJoVrm+u0d4gOE=
github.com/acorn-io/mink v0.0.0-20241017214326-9ad08ca68c7a h1:UJuG4PLuGZQ5cDjdqBbiDO2OQr2UuLwMfLAX3XX3LXs=
github.com/acorn-io/mink v0.0.0-20241017214326-9ad08ca68c7a/go.mod h1:8oQd22FJQbhQLTI+i4llI34+sGQC/ZS6reayoALk8eo=
github.com/acorn-io/mink v0.0.0-20241019043522-c80c1a36ee59 h1:bPs5d5p4eqhHsM651VKDnyuT96RpMm+lUHX2IzCgC2I=
github.com/acorn-io/mink v0.0.0-20241019043522-c80c1a36ee59/go.mod h1:8oQd22FJQbhQLTI+i4llI34+sGQC/ZS6reayoALk8eo=
github.com/adrg/xdg v0.5.1 h1:Im8iDbEFARltY09yOJlSGu4Asjk2vF85+3Dyru8uJ0U=
github.com/adrg/xdg v0.5.1/go.mod h1:nlTsY+NNiCBGCK2tpm09vRqfVzrc2fLmXGpBLF0zlTQ=
github.com/alecthomas/assert/v2 v2.7.0 h1:QtqSACNS3tF7oasA8CU6A6sXZSBDqnm7RfpLl9bZqbE=
Expand Down

0 comments on commit 440077f

Please sign in to comment.