Skip to content

Commit

Permalink
fix: dockerfile missing slash (#2428)
Browse files Browse the repository at this point in the history
# Description

Missing slash in the deploy docker.

# Changes

- [x] Fixes missing slash

## How to test
1. Check the CI/CD builds the deploy correctly.
  • Loading branch information
mfw78 authored Feb 23, 2024
1 parent af66b7e commit c6232be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ RUN --mount=type=cache,target=/usr/local/cargo/registry --mount=type=cache,targe
cp target/release/driver / && \
cp target/release/orderbook / && \
cp target/release/refunder / && \
cp target/release/solvers
cp target/release/solvers /

# Create an intermediate image to extract the binaries
FROM docker.io/debian:bookworm-slim as intermediate
Expand Down

0 comments on commit c6232be

Please sign in to comment.