Compare commits

..

1 Commits

Author SHA1 Message Date
Lars Erhardt
bfb01be34c Merge 590a52d38c into 74f7eaed6e 2025-03-20 14:27:24 +05:30
2 changed files with 3 additions and 3 deletions

View File

@@ -153,7 +153,7 @@ For more details, check out the full documentation [here](https://github.com/Itz
## Expose Perplexica to network
Perplexica runs on Next.js and handles all API requests. It works right away on the same network and stays accessible even with port forwarding.
You can access Perplexica over your home network by following our networking guide [here](https://github.com/ItzCrazyKns/Perplexica/blob/master/docs/installation/NETWORKING.md).
## One-Click Deployment

View File

@@ -1,4 +1,4 @@
FROM node:20.18.0-slim AS builder
FROM node:20.18.0-alpine AS builder
WORKDIR /home/perplexica
@@ -12,7 +12,7 @@ COPY public ./public
RUN mkdir -p /home/perplexica/data
RUN yarn build
FROM node:20.18.0-slim
FROM node:20.18.0-alpine
WORKDIR /home/perplexica