go back to copy . .

This commit is contained in:
beckerinj
2022-12-10 23:37:10 -05:00
parent d761e49a64
commit c79469af30
2 changed files with 2 additions and 8 deletions

View File

@@ -1,11 +1,7 @@
FROM rust:latest as builder
WORKDIR /core
COPY ./lib/db_client .
COPY ./lib/helpers .
COPY ./lib/periphery_client .
COPY ./lib/types .
COPY ./core .
COPY . .
RUN cargo build -p core --release

View File

@@ -1,9 +1,7 @@
FROM rust:latest as builder
WORKDIR /periphery
COPY ./lib/helpers .
COPY ./lib/types .
COPY ./periphery .
COPY . .
RUN cargo build -p periphery --release