Skip to content

Commit

Permalink
build(docker-compose-development): address build failure of `hyperswi…
Browse files Browse the repository at this point in the history
…tch-server` service (#6217)
  • Loading branch information
akhildevelops authored Oct 7, 2024
1 parent e44eb13 commit b79f75a
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions docker-compose-development.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,10 +59,12 @@ services:

### Application services
hyperswitch-server:
image: rust:latest
command: |
apt-get install -y protobuf-compiler && \
cargo run --bin router -- -f ./config/docker_compose.toml
build:
dockerfile_inline: |
FROM rust:latest
RUN apt-get update && \
apt-get install -y protobuf-compiler
command: cargo run --bin router -- -f ./config/docker_compose.toml
working_dir: /app
ports:
- "8080:8080"
Expand Down

0 comments on commit b79f75a

Please # to comment.