mirror of
https://github.com/cupcakearmy/gitea-sync.git
synced 2025-09-04 09:40:41 +00:00
initial commit
This commit is contained in:
19
Dockerfile
Normal file
19
Dockerfile
Normal file
@@ -0,0 +1,19 @@
|
||||
FROM node:18.15-alpine as base
|
||||
|
||||
RUN npm -g install pnpm@7
|
||||
WORKDIR /app
|
||||
COPY package.json pnpm-lock.yaml ./
|
||||
|
||||
FROM base as build
|
||||
RUN pnpm install --frozen-lockfile
|
||||
COPY . .
|
||||
RUN pnpm run build
|
||||
|
||||
FROM base as runner
|
||||
RUN pnpm install --frozen-lockfile --prod
|
||||
COPY --from=build /app/dist /app/dist
|
||||
CMD ["pnpm", "run", "start"]
|
||||
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user