feat: implement SEO improvements, listing profiles, service images, and towns serviced

This commit is contained in:
2026-03-08 15:12:55 -04:00
parent 7ac2c7c59e
commit c6ca35fcd9
28 changed files with 4258 additions and 85 deletions

View File

@@ -1,15 +1,19 @@
FROM node:latest
ENV PUBLIC_BASE_URL=http://localhost:5170
RUN mkdir -p /app
WORKDIR /app
COPY package*.json ./
ENV PATH /app/node_modules/.bin:$PATH
ENV PATH=/app/node_modules/.bin:$PATH
RUN npm install
COPY . /app
COPY . /app
RUN npm run build
EXPOSE 3000
CMD ["node", "build"]