Fix workdir
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 4s

This commit is contained in:
ryan 2025-09-24 13:25:23 -07:00
parent ecd8338927
commit 328af835dc

View File

@ -1,6 +1,7 @@
FROM node:20-alpine AS base FROM node:20-alpine AS base
WORKDIR hindki WORKDIR /app
# By copying only the package.json and package-lock.json here, we ensure that the following `-deps` steps are independent of the source code. # By copying only the package.json and package-lock.json here, we ensure that the following `-deps` steps are independent of the source code.
# Therefore, the `-deps` steps will be skipped if only the source code changes. # Therefore, the `-deps` steps will be skipped if only the source code changes.
COPY package.json package-lock.json ./ COPY package.json package-lock.json ./