From b1872306b4df79efc4e24b0c1ec70d1f32ecbd68 Mon Sep 17 00:00:00 2001 From: Bryan Stitt Date: Wed, 5 Jul 2023 11:40:43 -0700 Subject: [PATCH] tailing semicolon --- Dockerfile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index e77d9ba3..75bf76a1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -83,13 +83,14 @@ RUN --mount=type=bind,target=.,rw \ --mount=type=cache,target=/app/target,id=build_app_target \ set -eux; \ \ - cargo build --features "$WEB3_PROXY_FEATURES" --locked --release -p payment-contracts \ + cargo build --features "$WEB3_PROXY_FEATURES" --locked --release -p payment-contracts; \ cargo install \ --features "$WEB3_PROXY_FEATURES" \ --locked \ --no-default-features \ --path ./web3_proxy \ - --root /usr/local && \ + --root /usr/local \ + ; \ /usr/local/bin/web3_proxy_cli --help | grep 'Usage: web3_proxy_cli' # copy this file so that docker actually creates the build_tests container @@ -106,7 +107,7 @@ RUN set -eux; \ \ mkdir /llama; \ adduser --home /llama --shell /sbin/nologin --gecos '' --no-create-home --disabled-password --uid 1001 llama; \ - chown -R llama /llama; + chown -R llama /llama USER llama