e7f806219c
* Move client code to NS API * Move client to separate package * Move things around * Adjust run scripts * rustfmt * Add client to workspace
9 lines
181 B
Docker
9 lines
181 B
Docker
FROM ubuntu:22.04
|
|
|
|
RUN apt-get update && apt-get install -y ca-certificates
|
|
|
|
WORKDIR /nym
|
|
|
|
COPY nym-node-status-api/nym-node-status-api ./
|
|
ENTRYPOINT [ "/nym/nym-node-status-api" ]
|