coder-enterprise-images/.github/CONTRIBUTING.md

14 lines
417 B
Markdown
Raw Permalink Normal View History

2020-11-14 19:38:51 +00:00
## Adding a New Image
2021-02-17 19:08:48 +00:00
To add a new image, create a new folder in `images/` with the name of the image,
and create at least one `Dockerfile` for it, using an extension as the tag. For
instance, an Ubuntu-based version of your image would be in `Dockerfile.ubuntu`.
2020-11-14 19:38:51 +00:00
New images should extend from existing images whenever possible, e.g.
2021-02-17 19:08:48 +00:00
2020-11-14 19:38:51 +00:00
```Dockerfile
FROM codercom/enterprise-base:ubuntu
# Rest of your image...
```