You've already forked reloading-manager
Saint Pipeline, please give me the green light (#7)
Reviewed-on: rrise/reloading-manager#7 Co-authored-by: Ron Rise <ron@siteworxpro.com> Co-committed-by: Ron Rise <ron@siteworxpro.com>
This commit is contained in:
3
frontend/.dockerignore
Normal file
3
frontend/.dockerignore
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
.idea/
|
||||||
|
dist/
|
||||||
|
node_modules/
|
||||||
@@ -1,12 +1,10 @@
|
|||||||
FROM node:22.14.0 AS BUILD
|
FROM node:22.14.0 AS build
|
||||||
|
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
|
|
||||||
COPY package.json package-lock.json ./
|
COPY . .
|
||||||
|
RUN npm install && npm run build
|
||||||
RUN npm install && \
|
|
||||||
npm run build
|
|
||||||
|
|
||||||
FROM caddy
|
FROM caddy
|
||||||
|
|
||||||
COPY --from=BUILD /app/dist /usr/share/caddy
|
COPY --from=build /app/dist /usr/share/caddy
|
||||||
Reference in New Issue
Block a user