diff --git a/frontend/Dockerfile b/frontend/Dockerfile index 270187a..ef58aea 100644 --- a/frontend/Dockerfile +++ b/frontend/Dockerfile @@ -11,6 +11,7 @@ COPY frontend/tsconfig*.json ./ COPY frontend/vite.config.ts ./ COPY frontend/index.html ./ COPY frontend/src ./src +COPY frontend/public ./public COPY shared ./shared RUN npm run build @@ -18,6 +19,8 @@ RUN npm run build FROM nginx:alpine COPY --from=build /app/dist /usr/share/nginx/html +COPY frontend/public/icon-64.png /usr/share/nginx/html/icon-64.png +COPY frontend/public/icon-512.png /usr/share/nginx/html/icon-512.png COPY frontend/nginx.conf /etc/nginx/conf.d/default.conf EXPOSE 80 diff --git a/frontend/index.html b/frontend/index.html index c5d9968..1fd9294 100644 --- a/frontend/index.html +++ b/frontend/index.html @@ -3,6 +3,11 @@ + + + + + Contracts Companion diff --git a/frontend/public/icon-512.png b/frontend/public/icon-512.png new file mode 100644 index 0000000..997b89a Binary files /dev/null and b/frontend/public/icon-512.png differ diff --git a/frontend/public/icon-64.png b/frontend/public/icon-64.png new file mode 100644 index 0000000..0907e14 Binary files /dev/null and b/frontend/public/icon-64.png differ