You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I thought about a generic Dockerized implementation
FROM go:latest as builder
ADD .
RUN go build -o /tmp/golang-crypto-trading-bot
FROM scratch
ADD config.yaml ./config.yaml
COPY --from=builder /tmp/golang-crypto-trading-bot ./golang-crypto-trading-bot
CMD ["golang-crypto-trading-bot"]
After careful thinking about this, the manual Dockerfile is a better solution for anyone implementing any bot based on this framework, ergo I would keep any Docker version out of this repo.
If anybody needs to dockerize a project, can use the Dockerfile I provided in the other comment.
I think that it can maybe helpfully. What do you think?
The text was updated successfully, but these errors were encountered: