summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYuval Adam <_@yuv.al>2024-10-14 22:32:49 +0200
committerYuval Adam <_@yuv.al>2024-10-16 20:27:21 +0200
commiteefbcc657648e3c11e7c4c98fead0ec03445d39d (patch)
treec9247e55c668b906583e32173c91bf2f0336dc7c
parentfa54511e77eeccd4be61cdbd36265ece4dd799dc (diff)
Remove all docker files
-rw-r--r--.dockerignore2
-rw-r--r--Dockerfile19
-rw-r--r--README.md9
3 files changed, 0 insertions, 30 deletions
diff --git a/.dockerignore b/.dockerignore
deleted file mode 100644
index 5535952..0000000
--- a/.dockerignore
+++ /dev/null
@@ -1,2 +0,0 @@
-cidr.png
-README.md
diff --git a/Dockerfile b/Dockerfile
deleted file mode 100644
index 5aa44d6..0000000
--- a/Dockerfile
+++ /dev/null
@@ -1,19 +0,0 @@
-FROM node:13.14.0-alpine as build
-
-WORKDIR /build
-COPY .babelrc package.json webpack.config.js yarn.lock ./
-
-RUN set -eux \
- & apk add \
- --no-cache \
- yarn \
- python3
-
-RUN yarn
-COPY src ./src
-RUN yarn run build
-
-FROM nginx:1.25.5-alpine as nginx
-
-COPY --from=build /build/dist/ /usr/share/nginx/html
-EXPOSE 80/tcp
diff --git a/README.md b/README.md
index 73952a7..d820fa3 100644
--- a/README.md
+++ b/README.md
@@ -13,15 +13,6 @@ $ npm install
$ npm run dev
```
-## Docker
-
-You can build a Docker Image from an included Dockerfile and run it as a container:
-
-```bash
-docker build -t cidr.xyz:0.1 .
-docker run -d --rm -p 80:80 cidr.xyz:0.1
-```
-
## Deployment
Deployment is automated from `master` branch via Vercel.