Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History
31 lines (19 loc) · 900 Bytes

File metadata and controls

31 lines (19 loc) · 900 Bytes
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
FROM alpine:3.24@sha256:28bd5fe8b56d1bd048e5babf5b10710ebe0bae67db86916198a6eec434943f8b
ARG TARGETOS
ARG TARGETARCH
ENV TZ=Etc/UTC
ENV APP_USER=gowaves
RUN apk add --no-cache bind-tools curl
RUN addgroup -S $APP_USER && adduser -S $APP_USER -G $APP_USER
RUN mkdir -p /home/gowaves/state
RUN chown -R $APP_USER:$APP_USER /home/gowaves/state
COPY docker-entrypoint.sh /app/
RUN chmod +x /app/docker-entrypoint.sh
USER $APP_USER
COPY build/bin/$TARGETOS-$TARGETARCH/node /app/node
HEALTHCHECK CMD ["curl", "--fail", "--silent", "http://localhost:6869/node/status"]
EXPOSE 6868 6869 7470
VOLUME /home/gowaves/state
STOPSIGNAL SIGINT
ENTRYPOINT ["/app/docker-entrypoint.sh"]
CMD ["-state-path=/home/gowaves/state", "-bind-address=0.0.0.0:6868","-api-address=0.0.0.0:6869", "-build-extended-api", "-serve-extended-api", "-build-state-hashes", "-enable-grpc-api", "-grpc-address=0.0.0.0:7470"]
Morty Proxy This is a proxified and sanitized view of the page, visit original site.