-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Install xdg-utils to support new vite version (#6)
- Loading branch information
Showing
2 changed files
with
12 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -76,3 +76,13 @@ docker build -t <image-name> . | |
cd <path-to-your-evidence-project-root> | ||
docker run -v=$(pwd):/evidence-workspace -p=3000:3000 -it --rm <image-name> <command-to-run> | ||
``` | ||
|
||
## Publishing the latest image to Docker Hub | ||
Currently the image is hosted on Dockerhub. To build and publish a new version, follow these steps | ||
1. Login to Dockerhub => `docker login` | ||
2. Build the image => `docker build -t evidencedev/devenv:latest .` | ||
3. Push the image to Dockerhub => `docker push evidencedev/devenv:latest` | ||
|
||
For login credentials, see `EvidenceDev Dockerhub Admin` in 1password. This is setup under `[email protected]` (didn't think to create a google group for this at the time e.g [email protected] - will do so in the future - feel free to use it in the meantime). | ||
|
||
We should consider hosting this in AWS with CD/CI setup to automatically publish new versions of the image from main |