mirror of
https://github.com/zhom/donutbrowser.git
synced 2026-07-31 08:27:29 +02:00
refactor: run docker workflow on release
This commit is contained in:
+12
-4
@@ -1,10 +1,18 @@
|
||||
FROM node:22-alpine AS builder
|
||||
|
||||
WORKDIR /build
|
||||
COPY donut-sync/package.json donut-sync/tsconfig.json donut-sync/tsconfig.build.json ./
|
||||
COPY donut-sync/src/ src/
|
||||
RUN npm install
|
||||
RUN npm run build
|
||||
RUN npm prune --omit=dev
|
||||
|
||||
FROM node:22-alpine
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
COPY package.json .
|
||||
COPY dist/ dist/
|
||||
COPY node_modules/ node_modules/
|
||||
COPY --from=builder /build/package.json .
|
||||
COPY --from=builder /build/dist/ dist/
|
||||
COPY --from=builder /build/node_modules/ node_modules/
|
||||
|
||||
ENV NODE_ENV=production
|
||||
EXPOSE 12342
|
||||
|
||||
Reference in New Issue
Block a user