Skip to content

Commit

Permalink
update Dockerfile and README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
ihavenoface committed Nov 20, 2023
1 parent 344716d commit 748a5c5
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
###########################
# Build binaries stage
###########################
FROM --platform=$BUILDPLATFORM golang:1.17.8-alpine3.15 AS build
FROM --platform=$BUILDPLATFORM golang:1.21.4-alpine3.17 AS build
ADD . /app
WORKDIR /app
# Arguments required to build binaries targetting the correct OS and CPU architectures
Expand All @@ -16,9 +16,9 @@ RUN GOOS=$TARGETOS GOARCH=$TARGETARCH go install -v . ./cmd/...
###########################
# Build docker image stage
###########################
FROM alpine:3.15
FROM alpine:3.17
COPY --from=build /go/bin /bin
# 8333 Mainnet Bitcoin peer-to-peer port
# 8334 Mainet RPC port
EXPOSE 8333 8334
ENTRYPOINT ["btcd"]
# 9901 Mainnet Peercoin peer-to-peer port
# 9902 Mainet RPC port
EXPOSE 9901 9902
ENTRYPOINT ["ppcd"]
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
ppcd for peercoin - the pre-Alpha
ppcd (beta) for peercoin

## This version is strictly alpha quality.
## This version is strictly beta quality.
## Expect it to break without notice.

#### Known issues / bugs
Expand Down

0 comments on commit 748a5c5

Please sign in to comment.