Skip to content

Commit

Permalink
chore: fix image copy location
Browse files Browse the repository at this point in the history
  • Loading branch information
bambanah committed Aug 21, 2024
1 parent 4ac45c6 commit 4b54bcc
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
FROM node:20-alpine AS base

WORKDIR /app
RUN apk add --no-cache libc6-compat


FROM base AS builder

WORKDIR /app

RUN apk add --no-cache git

COPY . .

RUN corepack enable pnpm

RUN pnpm dist-server
RUN corepack enable pnpm && pnpm dist-server


FROM base AS runner

COPY --from=builder /app/dist/deemix-server-linux ./dist/deemix-server-linux

COPY --from=builder /app/dist/deemix-server-linux dist/deemix-server-linux

EXPOSE 6595

Expand Down

0 comments on commit 4b54bcc

Please sign in to comment.