* ⬆ Bump node from 20 to 24 in /frontend 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> * ⬆ Bump Node.js version from 20 to 24 in .nvmrc --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: User <alejsdev@gmail.com> Co-authored-by: Alejandra <90076947+alejsdev@users.noreply.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}
|