Skip to content
This repository was archived by the owner on Mar 11, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/deploy_testnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ jobs:
permissions:
contents: read
id-token: write
packages: write

steps:
- name: checkout the source code
Expand All @@ -33,7 +34,7 @@ jobs:

- name: login to ghcr
id: ghcr
uses: docker/login-action@v3
uses: docker/login-action@v6
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.repository_owner }}
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Copyright 2020 ChainSafe Systems
# SPDX-License-Identifier: LGPL-3.0-only

FROM alpine as alpine
FROM alpine AS alpine
RUN apk --no-cache add ca-certificates

FROM golang:1.19 AS builder
Expand All @@ -17,5 +17,5 @@ COPY --from=builder /spectre ./
RUN chmod +x ./spectre
RUN mkdir -p /mount
COPY --from=alpine /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
LABEL org.opencontainers.image.source https://github.com/sprintertech/spectre-node
LABEL org.opencontainers.image.source=https://github.com/sprintertech/spectre-node
ENTRYPOINT ["./spectre"]
Loading