We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5897eff commit 39069c1Copy full SHA for 39069c1
Dockerfile
@@ -12,7 +12,8 @@ RUN go mod download
12
COPY ./core /app/core
13
COPY ./cmd /app/cmd
14
COPY ./Makefile /app/Makefile
15
-COPY ./bot.toml /app/bot.toml
+COPY ./bot.testnet.toml /app/bot.testnet.toml
16
+COPY ./bot.mainnet.toml /app/bot.mainnet.toml
17
18
WORKDIR /app/
19
@@ -21,8 +22,7 @@ RUN make build-go
21
22
FROM alpine:3.18
23
24
COPY --from=builder /app/bot /usr/local/bin
-COPY --from=builder /app/bot.toml /app/bot.toml
25
26
WORKDIR /app
27
28
-CMD ["bot", "run", "--config", "/app/bot.toml"]
+CMD ["bot", "run", "--config", "/app/bot.testnet.toml"]
0 commit comments