Skip to content

Commit

Permalink
Restore the prior changes that were accidentally overwritten.
Browse files Browse the repository at this point in the history
  • Loading branch information
schmidtw committed Oct 27, 2022
1 parent 4b1c0c2 commit 0b085ab
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Expand Up @@ -213,7 +213,8 @@ fixed build upload
### Added
- Initial creation

[Unreleased]: https://github.com/xmidt-org/caduceus/compare/v0.6.10...HEAD
[Unreleased]: https://github.com/xmidt-org/caduceus/compare/v0.6.11...HEAD
[v0.6.11]: https://github.com/xmidt-org/caduceus/compare/v0.6.10...v0.6.11
[v0.6.10]: https://github.com/xmidt-org/caduceus/compare/v0.6.9...v0.6.10
[v0.6.9]: https://github.com/xmidt-org/caduceus/compare/v0.6.6...v0.6.9
[v0.6.6]: https://github.com/xmidt-org/caduceus/compare/v0.6.5...v0.6.6
Expand Down
10 changes: 5 additions & 5 deletions Dockerfile
@@ -1,24 +1,24 @@
FROM docker.io/library/golang:1.15-alpine as builder

MAINTAINER Jack Murdock <jack_murdock@comcast.com>
FROM docker.io/library/golang:1.19-alpine as builder

WORKDIR /src

ARG VERSION
ARG GITCOMMIT
ARG BUILDTIME


RUN apk add --no-cache --no-progress \
ca-certificates \
make \
curl \
git \
openssh \
gcc \
libc-dev \
upx

RUN go get github.com/geofffranks/spruce/cmd/spruce && chmod +x /go/bin/spruce
RUN mkdir -p /go/bin && \
curl -o /go/bin/spruce https://github.com/geofffranks/spruce/releases/download/v1.29.0/spruce-linux-amd64 && \
chmod +x /go/bin/spruce
COPY . .
RUN make test release

Expand Down

0 comments on commit 0b085ab

Please sign in to comment.