Skip to content

Commit

Permalink
deps: update for celestiaorg/celestia-node#1913 and v0.8.2 and common…
Browse files Browse the repository at this point in the history
… docker pipeline (#18)

* deps: update for celestiaorg/celestia-node#1913

* fix: path

* deps: update node to v0.8.0-rc2

* deps: node v0.8.0

* feat!: using common CI pipleine

* test build on github

* Revert "test build on github"

This reverts commit 14339a4.

* fix: test node 0.8.1 and app 0.12.2

* deps: update versions
  • Loading branch information
jcstein authored Apr 6, 2023
1 parent e06a8ff commit 4fa5220
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 98 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/docker-build-publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Docker Build & Publish

# Trigger on all push events, new semantic version tags, and all PRs
on:
push:
branches:
- "**"
tags:
- "v[0-9]+.[0-9]+.[0-9]+"
- "v[0-9]+.[0-9]+.[0-9]+-alpha.[0-9]+"
- "v[0-9]+.[0-9]+.[0-9]+-beta.[0-9]+"
- "v[0-9]+.[0-9]+.[0-9]+-rc[0-9]+"
pull_request:

jobs:
docker-security-build:
permissions:
contents: write
packages: write
uses: celestiaorg/.github/.github/workflows/[email protected] # yamllint disable-line rule:line-length
with:
dockerfile: Dockerfile
94 changes: 0 additions & 94 deletions .github/workflows/docker-publish.yml

This file was deleted.

8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
FROM ghcr.io/celestiaorg/celestia-node:v0.7.2 AS celestia-node
FROM ghcr.io/celestiaorg/celestia-node:v0.8.2 AS celestia-node

FROM ghcr.io/celestiaorg/celestia-app:v0.12.1
FROM ghcr.io/celestiaorg/celestia-app:0.12.2

COPY --from=celestia-node /celestia /
COPY --from=celestia-node /bin/celestia /

RUN apk update && apk --no-cache add curl jq libc6-compat

Expand All @@ -12,4 +12,4 @@ RUN chmod +x /entrypoint.sh

EXPOSE 26657 26659 9090

ENTRYPOINT ["/entrypoint.sh"]
ENTRYPOINT ["/entrypoint.sh"]

0 comments on commit 4fa5220

Please sign in to comment.