mirror of
https://github.com/status-im/status-go.git
synced 2025-01-09 06:12:55 +00:00
ad326fa290
Allows runnning a store node depending on node config settings.
18 lines
261 B
Docker
18 lines
261 B
Docker
ARG DOCKER_IMAGE
|
|
FROM $DOCKER_IMAGE
|
|
|
|
RUN apk add --no-cache git gcc musl-dev make
|
|
|
|
WORKDIR /go/src/github.com/golang-migrate/migrate
|
|
|
|
ENV GO111MODULE=on
|
|
ENV COVERAGE_DIR=/tmp/coverage
|
|
|
|
COPY go.mod go.sum ./
|
|
|
|
RUN go mod download
|
|
|
|
COPY . ./
|
|
|
|
CMD ["make", "test"]
|