Skip to content

Commit 39069c1

Browse files
committed
chore: update Dockerfile
1 parent 5897eff commit 39069c1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ RUN go mod download
1212
COPY ./core /app/core
1313
COPY ./cmd /app/cmd
1414
COPY ./Makefile /app/Makefile
15-
COPY ./bot.toml /app/bot.toml
15+
COPY ./bot.testnet.toml /app/bot.testnet.toml
16+
COPY ./bot.mainnet.toml /app/bot.mainnet.toml
1617

1718
WORKDIR /app/
1819

@@ -21,8 +22,7 @@ RUN make build-go
2122
FROM alpine:3.18
2223

2324
COPY --from=builder /app/bot /usr/local/bin
24-
COPY --from=builder /app/bot.toml /app/bot.toml
2525

2626
WORKDIR /app
2727

28-
CMD ["bot", "run", "--config", "/app/bot.toml"]
28+
CMD ["bot", "run", "--config", "/app/bot.testnet.toml"]

0 commit comments

Comments
 (0)