From 0b1abb57b9c09b28fff8b5aa85be443d0ad54bb1 Mon Sep 17 00:00:00 2001 From: regexowl Date: Thu, 3 Jul 2025 09:59:57 +0200 Subject: [PATCH] Remove devel dockerfile and update README Since local fullstack deployment is being done via https://github.com/osbuild/osbuild-getting-started, we can get rid of the original dockerile. README was also updated to no longer point to the `devel` folder as it just points you to the same repository. osbuild-getting-started is mentioned in the "Backend development" section. --- README.md | 1 - distribution/Dockerfile | 12 ------------ 2 files changed, 13 deletions(-) delete mode 100644 distribution/Dockerfile 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" ]