diff --git a/README.md b/README.md index 87a5588a..14f59267 100644 --- a/README.md +++ b/README.md @@ -263,7 +263,6 @@ make cockpit/devel | --------- | ----------- | | [`/api`](https://github.com/RedHatInsights/image-builder-frontend/tree/main/api) | API schema and config files | | [`/config`](https://github.com/RedHatInsights/image-builder-frontend/tree/main/config) | webpack configuration | -| [`/devel`](https://github.com/RedHatInsights/image-builder-frontend/tree/main/devel) | tools for local development | | [`/src`](https://github.com/RedHatInsights/image-builder-frontend/tree/main/src) | source code | | [`/src/Components`](https://github.com/RedHatInsights/image-builder-frontend/tree/main/src/Components) | source code split by individual components | | [`/src/test`](https://github.com/RedHatInsights/image-builder-frontend/tree/main/src/test) | test utilities | diff --git a/distribution/Dockerfile b/distribution/Dockerfile deleted file mode 100644 index 7452210d..00000000 --- a/distribution/Dockerfile +++ /dev/null @@ -1,12 +0,0 @@ -FROM node:18 - -WORKDIR /app - -COPY . . - -RUN npm ci - -EXPOSE 8002 -EXPOSE 1337 - -CMD [ "npm", "run", "devel" ]