Skip to content

Commit

Permalink
drop building with docker
Browse files Browse the repository at this point in the history
  • Loading branch information
jprusik committed Nov 1, 2024
1 parent 012f526 commit cd79b34
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 82 deletions.
18 changes: 1 addition & 17 deletions .github/renovate.json
Original file line number Diff line number Diff line change
@@ -1,24 +1,8 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["github>bitwarden/renovate-config"],
"enabledManagers": [
"dockerfile",
"docker-compose",
"github-actions",
"npm",
"nvm"
],
"enabledManagers": ["github-actions", "npm", "nvm"],
"packageRules": [
{
"groupName": "dockerfile minor",
"matchManagers": ["dockerfile"],
"matchUpdateTypes": ["minor", "patch"]
},
{
"groupName": "docker-compose minor",
"matchManagers": ["docker-compose"],
"matchUpdateTypes": ["minor", "patch"]
},
{
"groupName": "gh minor",
"matchManagers": ["github-actions"],
Expand Down
25 changes: 0 additions & 25 deletions .github/workflows/docker.yml

This file was deleted.

16 changes: 0 additions & 16 deletions Dockerfile

This file was deleted.

17 changes: 0 additions & 17 deletions Dockerfile.dev

This file was deleted.

10 changes: 3 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,13 @@ Test the Web enables anyone to quickly test common browser interactions on the w

## Requirements

- [npm](https://www.npmjs.com/) and/or [Docker](https://www.docker.com/)
- [npm](https://www.npmjs.com/)

## Quick-start

- clone the repo to your desired environment
- build and run:
- with Node/npm:
- `npm ci && npm run build:watch`
- with Docker:
- `docker build -f Dockerfile.dev . -t test-the-web:dev`
- `docker run -d --name test-the-web -p 443:443 -p 80:80 test-the-web:dev`
- build and run with Node/npm:
- `npm ci && npm run build:watch`
- go to `http://localhost`
- start testing!

Expand Down

0 comments on commit cd79b34

Please sign in to comment.