Remove docker compose from integration tests because of the testcontainers dependency nightmare (#34)

* Remove docker compose from integration tests because of the testcontainers dependency nightmare
This commit is contained in:
2024-06-01 19:12:14 +02:00
committed by GitHub
parent aaf8a3b163
commit 4492f77d87
7 changed files with 159 additions and 774 deletions

15
test/Dockerfile Normal file
View File

@ -0,0 +1,15 @@
FROM golang:1.22-alpine as builder
ARG ARG_VERSION
ENV VERSION $ARG_VERSION
WORKDIR /app
COPY . .
FROM builder AS build-test-app
RUN CGO_ENABLED=0 \
go build -ldflags="-s -w" -o whatismyip ./cmd
FROM scratch AS test
COPY --from=build-test-app /app/whatismyip /usr/bin/
ENTRYPOINT ["whatismyip"]