mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2024-12-22 03:30:37 +00:00
DockerHub support (#2325)
This commit is contained in:
parent
3347068dc5
commit
3fcb6187f2
@ -3,8 +3,9 @@ FROM golang:1.16-alpine3.13 as builder
|
||||
RUN apk --no-cache add make gcc g++ linux-headers git bash ca-certificates libgcc libstdc++
|
||||
|
||||
WORKDIR /app
|
||||
ADD . .
|
||||
|
||||
RUN make erigon rpcdaemon integration sentry
|
||||
RUN make all
|
||||
|
||||
FROM alpine:3.13
|
||||
|
||||
|
4
hooks/post_checkout
Normal file
4
hooks/post_checkout
Normal file
@ -0,0 +1,4 @@
|
||||
#!/bin/bash
|
||||
# Docker hub does a recursive clone, then checks the branch out,
|
||||
# so when a PR adds a submodule (or updates it), it fails.
|
||||
git submodule update --init
|
Loading…
Reference in New Issue
Block a user