Our great sponsors
-
# Build stage FROM golang:1.18.3-alpine AS builder WORKDIR /app COPY . . RUN go build -o main ./cmd/graphql-api/main.go RUN apk add curl RUN curl -L https://github.com/golang-migrate/migrate/releases/download/v4.15.2/migrate.linux-amd64.tar.gz | tar xvz # Run stage FROM alpine WORKDIR /app COPY --from=builder /app/main . COPY --from=builder /app/config/config-docker.yaml ./config/config-docker.yaml COPY --from=builder /app/migrate.linux-amd64 ./migrate COPY start.sh . COPY wait-for.sh . COPY internal/repositories/postgres/migrations ./migrations
NOTE:
The number of mentions on this list indicates mentions on common posts plus user suggested alternatives.
Hence, a higher number means a more popular project.