Skip to content

Commit

Permalink
Fix default config once and for all
Browse files Browse the repository at this point in the history
  • Loading branch information
Admiral-Piett committed Nov 4, 2023
1 parent a43d9fd commit 1636d4f
Show file tree
Hide file tree
Showing 3 changed files with 366 additions and 323 deletions.
8 changes: 5 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,11 @@ RUN go build -o goaws app/cmd/goaws.go
# release image
FROM alpine

COPY --from=build /go/src/github.com/Admiral-Piett/goaws/goaws /goaws
WORKDIR /app

COPY app/conf/goaws.yaml /conf/
COPY --from=build /go/src/github.com/Admiral-Piett/goaws/goaws ./goaws

COPY app/conf/goaws.yaml ./conf/

EXPOSE 4100
ENTRYPOINT ["/goaws"]
ENTRYPOINT ["./goaws"]
Loading

0 comments on commit 1636d4f

Please sign in to comment.