Skip to content

Commit

Permalink
Update Dockerfile (#499)
Browse files Browse the repository at this point in the history
  • Loading branch information
y4ssi authored Oct 2, 2024
1 parent 13856f3 commit 6223f36
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ FROM golang:1.22 AS lightwalletd_base

ADD . /go/src/github.com/zcash/lightwalletd
WORKDIR /go/src/github.com/zcash/lightwalletd

RUN make \
&& /usr/bin/install -c ./lightwalletd /usr/local/bin/ \
&& mkdir -p /var/lib/lightwalletd/db \
Expand All @@ -10,13 +11,13 @@ RUN make \
ARG LWD_USER=lightwalletd
ARG LWD_UID=2002

RUN useradd --home-dir /srv/$LWD_USER \
RUN useradd --home-dir "/srv/$LWD_USER" \
--shell /bin/bash \
--create-home \
--uid $LWD_UID\
$LWD_USER
USER $LWD_USER
WORKDIR /srv/$LWD_USER
--uid "$LWD_UID" \
"$LWD_USER"

WORKDIR "/srv/$LWD_USER"

ENTRYPOINT ["lightwalletd"]
CMD ["--help"]

0 comments on commit 6223f36

Please sign in to comment.