synthetic/Dockerfile

9 lines
175 B
Docker

# run go test inside a docker container for consistency as acceptance testing
FROM golang:1.21
WORKDIR /app
COPY go.mod go.sum ./
RUN go mod download
COPY . .
RUN go test -v