mirror of
https://github.com/status-im/status-go.git
synced 2025-02-01 17:38:36 +00:00
11 lines
263 B
Docker
11 lines
263 B
Docker
FROM karalabe/xgo-1.10.x
|
|
|
|
VOLUME [ "/build", "/deps-cache" ]
|
|
|
|
# Inject the container entry point, the build script (patched for Status bindings conditional builds of C code)
|
|
ADD build.sh /build.sh
|
|
ENV BUILD /build.sh
|
|
RUN chmod +x $BUILD
|
|
|
|
ENTRYPOINT ["/build.sh"]
|