mirror of
https://github.com/simon987/task_tracker.git
synced 2025-04-04 07:52:59 +00:00
22 lines
385 B
Docker
22 lines
385 B
Docker
# Build API
|
|
FROM golang:1.14 as go_build
|
|
WORKDIR /build/
|
|
|
|
COPY api api
|
|
COPY client client
|
|
COPY config config
|
|
COPY main main
|
|
COPY storage storage
|
|
COPY go.mod .
|
|
RUN GOOS=linux CGO_ENABLED=0 go build -a -installsuffix cgo -o tt_api ./main/
|
|
|
|
FROM scratch
|
|
|
|
WORKDIR /root/
|
|
|
|
|
|
COPY --from=go_build ["/build/tt_api", "/root/"]
|
|
COPY ["config.yml", "schema.sql", "/root/"]
|
|
|
|
CMD ["/root/tt_api"]
|