mirror of
https://github.com/louislam/dockge.git
synced 2024-11-27 13:14:03 +00:00
Build frontend during docker build
This commit is contained in:
parent
109222f024
commit
92170540c6
3 changed files with 20 additions and 6 deletions
|
@ -9,9 +9,9 @@ tmp
|
|||
|
||||
# Docker extra
|
||||
docker
|
||||
frontend
|
||||
.editorconfig
|
||||
.eslintrc.cjs
|
||||
.git
|
||||
.gitignore
|
||||
README.md
|
||||
.github
|
||||
*.md
|
||||
|
|
|
@ -1,6 +1,9 @@
|
|||
services:
|
||||
dockge:
|
||||
image: louislam/dockge:1
|
||||
build:
|
||||
context: .
|
||||
dockerfile: docker/Dockerfile
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
# Host Port : Container Port
|
||||
|
|
|
@ -4,9 +4,19 @@
|
|||
FROM louislam/dockge:build-healthcheck AS build_healthcheck
|
||||
|
||||
############################################
|
||||
# Build
|
||||
# Build frontend
|
||||
############################################
|
||||
FROM louislam/dockge:base AS build
|
||||
FROM louislam/dockge:base AS build_frontend
|
||||
WORKDIR /app
|
||||
COPY --chown=node:node . .
|
||||
RUN --mount=type=cache,id=pnpm,target=/pnpm/store \
|
||||
pnpm install && \
|
||||
pnpm run build:frontend
|
||||
|
||||
############################################
|
||||
# Install node modules
|
||||
############################################
|
||||
FROM louislam/dockge:base AS build_nodemodules
|
||||
WORKDIR /app
|
||||
COPY --chown=node:node ./package.json ./package.json
|
||||
COPY --chown=node:node ./pnpm-lock.yaml ./pnpm-lock.yaml
|
||||
|
@ -18,8 +28,9 @@ RUN --mount=type=cache,id=pnpm,target=/pnpm/store pnpm install --prod --frozen-l
|
|||
FROM louislam/dockge:base AS release
|
||||
WORKDIR /app
|
||||
COPY --chown=node:node --from=build_healthcheck /app/extra/healthcheck /app/extra/healthcheck
|
||||
COPY --from=build /app/node_modules /app/node_modules
|
||||
COPY --chown=node:node . .
|
||||
COPY --from=build_frontend /app/frontend-dist /app/frontend-dist
|
||||
COPY --from=build_nodemodules /app/node_modules /app/node_modules
|
||||
COPY --chown=node:node . .
|
||||
RUN mkdir ./data
|
||||
|
||||
VOLUME /app/data
|
||||
|
|
Loading…
Reference in a new issue