You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
412 B
18 lines
412 B
FROM gcr.io/distroless/cc
|
|
|
|
USER 1000
|
|
|
|
LABEL "org.opencontainers.image.source"="https://github.com/itchysats/itchysats"
|
|
LABEL "org.opencontainers.image.authors"="hello@itchysats.network"
|
|
|
|
ARG TARGETPLATFORM
|
|
ARG BINARY_PATH
|
|
|
|
COPY $TARGETPLATFORM/$BINARY_PATH /usr/bin/binary
|
|
|
|
VOLUME data
|
|
|
|
# HTTP Port and P2P Port
|
|
EXPOSE 8000 9999
|
|
|
|
ENTRYPOINT ["/usr/bin/binary", "--data-dir=/data", "--http-address=0.0.0.0:8000"]
|
|
|