Skip to content
Snippets Groups Projects

Oneshot accounts

Merged Pascal Engélibert requested to merge poc-oneshot-accounts into master
Compare and Show latest version
30 files
+ 1191
293
Compare changes
  • Side-by-side
  • Inline
Files
30
+ 10
1
@@ -27,6 +27,14 @@ RUN test -x build/duniter || \
mv target/release/duniter build/ \
)
# Create fake duniter-cucumber if is not exist
# The goal is to avoid error later, this binary is optional
RUN test -x build/duniter-cucumber || \
( \
mkdir -p build && \
touch build/duniter-cucumber \
)
# ------------------------------------------------------------------------------
# Final Stage
# ------------------------------------------------------------------------------
@@ -40,7 +48,7 @@ LABEL description="Crypto-currency software (based on Substrate framework) to op
RUN adduser --home /var/lib/duniter duniter
# Configuration
# rpc, rpc-ws, p2p, telemetry
# rpc, rpc-ws, p2p, telemetry
EXPOSE 9933 9944 30333 9615
VOLUME /var/lib/duniter
ENTRYPOINT ["docker-entrypoint"]
@@ -48,4 +56,5 @@ USER duniter
# Intall
COPY --from=build /root/build/duniter /usr/local/bin/duniter
COPY --from=build /root/build/duniter-cucumber /usr/local/bin/duniter-cucumber
COPY docker/docker-entrypoint /usr/local/bin/
Loading