diff --git a/web/dockerfile b/web/dockerfile index 106595b5..ff84e5af 100644 --- a/web/dockerfile +++ b/web/dockerfile @@ -1,7 +1,7 @@ FROM nginx:alpine COPY nginx.conf.template /etc/nginx/conf.d/nginx.conf.template RUN rm -rf /usr/share/nginx/html/* -COPY ./dist/kdb-web/ /usr/share/nginx/html +COPY ./dist/web/ /usr/share/nginx/html RUN apk update RUN apk add bash CMD /bin/bash -c "envsubst '\$BOT_CONTAINER_NAME' < /etc/nginx/conf.d/nginx.conf.template > /etc/nginx/nginx.conf; nginx -g 'daemon off;'" diff --git a/web/package.json b/web/package.json index 8312e902..cdce16e1 100644 --- a/web/package.json +++ b/web/package.json @@ -1,5 +1,5 @@ { - "name": "kdb-web", + "name": "web", "version": "1.2.0", "scripts": { "ng": "ng", @@ -52,4 +52,4 @@ "tslib": "^2.4.1", "typescript": "~4.9.5" } -} \ No newline at end of file +}