b709d3ba0b
* fix: pull from harbor instead of dockerhub * add remaining * add comments saying that these changes will only work with VPN
9 lines
247 B
Docker
9 lines
247 B
Docker
# this will only work with VPN, otherwise remove the harbor part
|
|
FROM harbor.nymte.ch/dockerhub/rust:latest AS builder
|
|
|
|
COPY ./ /usr/src/nym
|
|
WORKDIR /usr/src/nym/nym-api
|
|
RUN cargo build --release
|
|
|
|
ENTRYPOINT ["/usr/src/nym/nym-api/entrypoint.sh"]
|