mirror of https://github.com/gabehf/Koito.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
881 B
51 lines
881 B
FROM node AS frontend
|
|
|
|
ARG KOITO_VERSION
|
|
ENV VITE_KOITO_VERSION=$KOITO_VERSION
|
|
ENV BUILD_TARGET=docker
|
|
|
|
WORKDIR /client
|
|
COPY ./client/package.json ./client/yarn.lock ./
|
|
RUN yarn install
|
|
COPY ./client .
|
|
|
|
RUN yarn run build
|
|
|
|
FROM golang:1.24 AS backend
|
|
|
|
ARG KOITO_VERSION
|
|
ENV CGO_ENABLED=1
|
|
ENV GOOS=linux
|
|
|
|
WORKDIR /app
|
|
|
|
RUN apt-get update && \
|
|
apt-get install -y libvips-dev pkg-config && \
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
COPY go.mod go.sum ./
|
|
RUN go mod download
|
|
|
|
COPY . .
|
|
|
|
RUN go build -ldflags "-X main.Version=$KOITO_VERSION" -o app ./cmd/api
|
|
|
|
|
|
FROM debian:bookworm-slim AS final
|
|
|
|
WORKDIR /app
|
|
|
|
RUN apt-get update && \
|
|
apt-get install -y libvips42 && \
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
COPY --from=backend /app/app ./app
|
|
COPY --from=frontend /client/build ./client/build
|
|
COPY ./client/public ./client/public
|
|
COPY ./assets ./assets
|
|
COPY ./db ./db
|
|
|
|
EXPOSE 4110
|
|
|
|
ENTRYPOINT ["./app"]
|