Skip to content

Commit

Permalink
fix: Dockerfiles
Browse files Browse the repository at this point in the history
  • Loading branch information
Bisht13 committed Jun 9, 2024
1 parent fb68ab4 commit 72fc217
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
3 changes: 3 additions & 0 deletions IMAP.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ WORKDIR /app
# Clone the GitHub repository
RUN git clone https://github.com/zkemail/relayer-imap.git

# Change to the directory of the cloned repository
WORKDIR /app/relayer-imap

# Build the Rust package
RUN cargo build

Expand Down
2 changes: 1 addition & 1 deletion Relayer.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Use the base image
FROM relayer-base:latest
FROM bisht13/relayer-base:latest

# Set the working directory for the Rust project
WORKDIR /relayer/packages/relayer
Expand Down
3 changes: 3 additions & 0 deletions SMTP.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ WORKDIR /app
# Clone the GitHub repository
RUN git clone https://github.com/zkemail/relayer-smtp.git

# Change to the directory of the cloned repository
WORKDIR /app/relayer-smtp

# Build the Rust package
RUN cargo build

Expand Down

0 comments on commit 72fc217

Please sign in to comment.