Skip to content

Commit

Permalink
revert to node image for runner
Browse files Browse the repository at this point in the history
  • Loading branch information
bambanah committed Aug 21, 2024
1 parent 3648a62 commit 4ac45c6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
FROM node:20-alpine AS base

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


FROM base AS builder

RUN apk add --no-cache git

COPY . .
RUN corepack enable pnpm && pnpm i --frozen-lockfile

RUN pnpm dist-server
RUN corepack enable pnpm

RUN pnpm dist-server

FROM lsiobase/alpine:3.20

RUN apk add --no-cache libc6-compat
FROM base AS runner

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

Expand Down

0 comments on commit 4ac45c6

Please sign in to comment.