-
Notifications
You must be signed in to change notification settings - Fork 1k
Closed
Labels
enhancementNew feature or requestNew feature or request
Description
It would be great to publish an image based on Alpine in addition to the existing image.
You would only need to duplicate your existing Dockerfile and replace the FROM as follows FROM golang:alpine AS builder
If we have this Alpine image, it would be then very easy to include sqlc as part of a containerized build process such as:
# sqlc
# ---
FROM kyleconroy/sqlc:alpine AS sqlc
# ---
FROM golang:1.15.3-alpine3.12 AS builder
RUN apk --no-cache add make git curl
WORKDIR /build
COPY . .
COPY --from=sqlc /bin/sqlc /bin/sqlc
RUN make build
...
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request