mirror of
https://github.com/furyhawk/home_stack.git
synced 2026-07-21 18:26:54 +00:00
Bumps node from 20 to 24. --- updated-dependencies: - dependency-name: node dependency-version: '24' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
14 lines
162 B
Docker
14 lines
162 B
Docker
FROM node:24
|
|
|
|
WORKDIR /app
|
|
|
|
COPY package*.json /app/
|
|
|
|
RUN npm install
|
|
|
|
RUN npx -y playwright install --with-deps
|
|
|
|
COPY ./ /app/
|
|
|
|
ARG VITE_API_URL=${VITE_API_URL}
|