mirror of
https://github.com/status-im/status-go.git
synced 2025-01-09 14:16:21 +00:00
ad326fa290
Allows runnning a store node depending on node config settings.
11 lines
225 B
Docker
11 lines
225 B
Docker
FROM alpine:3.13
|
|
|
|
RUN apk add --no-cache ca-certificates
|
|
|
|
COPY migrate /usr/local/bin/migrate
|
|
|
|
RUN ln -s /usr/local/bin/migrate /usr/bin/migrate
|
|
RUN ln -s /usr/local/bin/migrate /migrate
|
|
|
|
ENTRYPOINT ["migrate"]
|
|
CMD ["--help"] |