-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docker: add eth chains and there version in docker (#594)
* add eth chains and there version in docker * remove unused docker version * fix validator file * update eth chain names
- Loading branch information
Showing
4 changed files
with
67 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
ARG BASE_IMAGE | ||
ARG VERSION | ||
FROM ${BASE_IMAGE}:${VERSION} | ||
|
||
LABEL org.opencontainers.image.source="https://github.com/cosmology-tech/starship" | ||
|
||
# Set up dependencies | ||
ENV PACKAGES curl make bash jq sed | ||
|
||
# Install minimum necessary dependencies | ||
RUN apk add --no-cache $PACKAGES | ||
|
||
WORKDIR /opt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
ARG BASE_IMAGE | ||
ARG VERSION | ||
FROM ${BASE_IMAGE}:${VERSION} AS source | ||
|
||
FROM alpine:3.17 | ||
|
||
LABEL org.opencontainers.image.source="https://github.com/cosmology-tech/starship" | ||
|
||
COPY --from=source /beacon-chain /usr/bin | ||
|
||
# Set up dependencies | ||
ENV PACKAGES curl make bash jq sed | ||
|
||
# Install minimum necessary dependencies | ||
RUN apk add --no-cache $PACKAGES | ||
|
||
WORKDIR /opt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
ARG BASE_IMAGE | ||
ARG VERSION | ||
FROM ${BASE_IMAGE}:${VERSION} AS source | ||
|
||
FROM alpine:3.17 | ||
|
||
LABEL org.opencontainers.image.source="https://github.com/cosmology-tech/starship" | ||
|
||
COPY --from=source /validator /usr/bin | ||
|
||
# Set up dependencies | ||
ENV PACKAGES curl make bash jq sed | ||
|
||
# Install minimum necessary dependencies | ||
RUN apk add --no-cache $PACKAGES | ||
|
||
WORKDIR /opt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters