mirror of
https://github.com/hay-kot/homebox.git
synced 2024-11-21 16:15:45 +00:00
03df23d97c
* fix inaccruate 401 error on SQL db error
* init golangci-lint config
* linter autofix
* testify auto fixes
* fix sqlite busy errors
* fix naming
* more linter errors
* fix rest of linter issues
Former-commit-id: e8449b3a73
50 lines
1.3 KiB
Docker
50 lines
1.3 KiB
Docker
|
|
# Build Nuxt
|
|
FROM node:18-alpine as frontend-builder
|
|
WORKDIR /app
|
|
RUN npm install -g pnpm
|
|
COPY frontend/package.json frontend/pnpm-lock.yaml ./
|
|
RUN pnpm install --frozen-lockfile --shamefully-hoist
|
|
COPY frontend .
|
|
RUN pnpm build
|
|
|
|
# Build API
|
|
FROM golang:alpine AS builder
|
|
ARG BUILD_TIME
|
|
ARG COMMIT
|
|
ARG VERSION
|
|
RUN apk update && \
|
|
apk upgrade && \
|
|
apk add --update git build-base gcc g++
|
|
|
|
WORKDIR /go/src/app
|
|
COPY ./backend .
|
|
RUN go get -d -v ./...
|
|
RUN rm -rf ./app/api/public
|
|
COPY --from=frontend-builder /app/.output/public ./app/api/static/public
|
|
RUN CGO_ENABLED=0 GOOS=linux go build \
|
|
-ldflags "-s -w -X main.commit=$COMMIT -X main.buildTime=$BUILD_TIME -X main.version=$VERSION" \
|
|
-o /go/bin/api \
|
|
-v ./app/api/*.go
|
|
|
|
# Production Stage
|
|
FROM alpine:latest
|
|
|
|
ENV HBOX_MODE=production
|
|
ENV HBOX_STORAGE_DATA=/data/
|
|
ENV HBOX_STORAGE_SQLITE_URL=/data/homebox.db?_pragma=busy_timeout=2000&_pragma=journal_mode=WAL&_fk=1
|
|
|
|
RUN apk --no-cache add ca-certificates
|
|
RUN mkdir /app
|
|
COPY --from=builder /go/bin/api /app
|
|
|
|
RUN chmod +x /app/api
|
|
|
|
LABEL Name=homebox Version=0.0.1
|
|
LABEL org.opencontainers.image.source="https://github.com/hay-kot/homebox"
|
|
EXPOSE 7745
|
|
WORKDIR /app
|
|
VOLUME [ "/data" ]
|
|
|
|
ENTRYPOINT [ "/app/api" ]
|
|
CMD [ "/data/config.yml" ]
|