forked from mirrors/homebox
31b34241e0
* change /content/ -> /homebox/ * add cache to code generators * update env variables to set data storage * update env variables * set env variables in prod container * implement attachment post route (WIP) * get attachment endpoint * attachment download * implement string utilities lib * implement generic drop zone * use explicit truncate * remove clean dir * drop strings composable for lib * update item types and add attachments * add attachment API * implement service context * consolidate API code * implement editing attachments * implement upload limit configuration * improve error handling * add docs for max upload size * fix test cases
48 lines
No EOL
1.1 KiB
Docker
48 lines
No EOL
1.1 KiB
Docker
|
|
# Build Nuxt
|
|
FROM node:17-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
|
|
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/public
|
|
RUN CGO_ENABLED=1 GOOS=linux go build \
|
|
-ldflags "-s -w -X main.Commit=$COMMIT -X main.BuildTime=$BUILD_TIME" \
|
|
-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?_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
|
|
EXPOSE 7745
|
|
WORKDIR /app
|
|
VOLUME [ "/data" ]
|
|
|
|
ENTRYPOINT [ "/app/api" ]
|
|
CMD [ "/data/config.yml" ] |