mirror of
https://github.com/simon987/task_tracker.git
synced 2025-04-16 08:56:45 +00:00
17 lines
523 B
Docker
17 lines
523 B
Docker
# Build
|
|
FROM golang:latest as go_build
|
|
WORKDIR /go/src/github.com/simon987/task_tracker/
|
|
|
|
COPY . .
|
|
RUN go get ./main/ && GOOS=linux CGO_ENABLED=0 go build -a -installsuffix cgo -o tt_api ./main/
|
|
|
|
# Execute in alpine
|
|
FROM alpine:latest
|
|
WORKDIR /root
|
|
|
|
COPY --from=go_build ["/go/src/github.com/simon987/task_tracker/tt_api",\
|
|
"/go/src/github.com/simon987/task_tracker/schema.sql",\
|
|
"/go/src/github.com/simon987/task_tracker/config.yml",\
|
|
"./"]
|
|
CMD ["./tt_api"]
|