feat: implement SEO improvements, listing profiles, service images, and towns serviced
This commit is contained in:
12
Dockerfile
12
Dockerfile
@@ -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"]
|
||||
|
||||
Reference in New Issue
Block a user