add tags page and dockerfile lol

This commit is contained in:
2025-11-17 17:24:07 +13:00
parent c345c005cf
commit c481f931fd
3 changed files with 98 additions and 0 deletions

13
web/Dockerfile Normal file
View File

@@ -0,0 +1,13 @@
FROM node:24-alpine
WORKDIR /app
COPY package*.json ./
RUN npm i
COPY . .
ENV PUBLIC_PB_URL=http://pb:8080
ENV PUBLIC_URL=http://localhost:4321
RUN npm run build
EXPOSE 4321
# CMD ["npm", "run", "dev", "--", "--host"]
CMD [ "npm", "run", "preview", "--", "--host" ]