mirror of
https://github.com/TECHNOFAB11/dbmate.git
synced 2025-12-11 23:50:04 +01:00
32 lines
737 B
Docker
32 lines
737 B
Docker
# build image
|
|
FROM golang:1.9 as build
|
|
|
|
# required to force cgo (for sqlite driver) with cross compile
|
|
ENV CGO_ENABLED 1
|
|
|
|
# install database clients
|
|
RUN apt-get update \
|
|
&& apt-get install -y --no-install-recommends \
|
|
mysql-client \
|
|
postgresql-client \
|
|
sqlite3 \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
# development dependencies
|
|
RUN go get \
|
|
github.com/golang/lint/golint \
|
|
github.com/kisielk/errcheck
|
|
|
|
# copy source files
|
|
COPY . /go/src/github.com/amacneil/dbmate
|
|
WORKDIR /go/src/github.com/amacneil/dbmate
|
|
|
|
# build
|
|
RUN make install build
|
|
|
|
# runtime image
|
|
FROM debian:stretch-slim
|
|
COPY --from=build /go/src/github.com/amacneil/dbmate/dist/dbmate-linux-amd64 \
|
|
/usr/local/bin/dbmate
|
|
WORKDIR /app
|
|
ENTRYPOINT ["/usr/local/bin/dbmate"]
|