Update build command in Docker files

This commit is contained in:
Gusto 2023-09-27 14:09:38 +03:00
parent 83d1ef2e03
commit d50b845bf2
2 changed files with 2 additions and 2 deletions

View File

@ -13,7 +13,7 @@ RUN apt-get update && apt-get install -yq \
WORKDIR /nomos
COPY . .
RUN cargo build --release -p nomos-node --no-default-features --features libp2p
RUN cargo build --release -p nomos-node
# NODE IMAGE ----------------------------------------------------------

View File

@ -13,7 +13,7 @@ RUN apt-get update && apt-get install -yq \
WORKDIR /nomos
COPY . .
RUN cargo build --release -p nomos-node --no-default-features --features libp2p
RUN cargo build --release -p nomos-node
RUN cargo build --release -p mixnode
# NODE IMAGE ----------------------------------------------------------