25 lines
624 B
Docker
25 lines
624 B
Docker
FROM golang:1.22-alpine AS builder
|
|
RUN apk add --no-cache gcc musl-dev
|
|
WORKDIR /app
|
|
COPY go.mod go.sum ./
|
|
RUN go mod download
|
|
COPY . .
|
|
RUN CGO_ENABLED=1 GOOS=linux go build -o rental-manager ./cmd/server
|
|
|
|
FROM node:20-alpine AS frontend-builder
|
|
WORKDIR /app/frontend
|
|
COPY frontend/package*.json ./
|
|
RUN npm install
|
|
COPY frontend/ .
|
|
RUN npm run build
|
|
|
|
FROM alpine:3.19
|
|
RUN apk add --no-cache ca-certificates tzdata
|
|
WORKDIR /app
|
|
COPY --from=builder /app/rental-manager .
|
|
COPY --from=frontend-builder /app/frontend/build ./frontend/build
|
|
RUN mkdir -p /app/data/documents
|
|
EXPOSE 8080
|
|
ENV TZ=Europe/Paris
|
|
CMD ["./rental-manager"]
|