Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions client/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
### Deps
FROM node:16-alpine AS deps
FROM node:19-alpine AS deps
RUN apk add --no-cache libc6-compat
WORKDIR /app
COPY package.json yarn.lock ./
RUN yarn install --frozen-lockfile --network-timeout 1000000

### Builder
FROM node:16-alpine AS builder
FROM node:19-alpine AS builder
WORKDIR /app
COPY --from=deps /app/node_modules ./node_modules
COPY . .
RUN yarn build

### Runner
FROM node:16-alpine AS runner
FROM node:19-alpine AS runner
WORKDIR /app

LABEL org.opencontainers.image.source="https://github.com/kostaspt/domane"
Expand Down