block-sdk/contrib/images/block-sdk.integration.Dockerfile
Nikhil Vasan 454d2e5f3d
feat(e2e): add integration tests (#100)
* add integration tests

* add workflow

---------

Co-authored-by: David Terpay <35130517+davidterpay@users.noreply.github.com>
2023-09-18 10:03:11 -04:00

15 lines
305 B
Docker

FROM golang:1.21-bullseye AS builder
WORKDIR /src/pob
COPY . .
RUN go mod tidy
RUN make build-test-app
## Prepare the final clear binary
FROM ubuntu:rolling
EXPOSE 26656 26657 1317 9090 7171
COPY --from=builder /src/pob/build/* /usr/local/bin/
RUN apt-get update && apt-get install ca-certificates -y