Giter Site home page Giter Site logo

circleci-public / cimg-elixir Goto Github PK

View Code? Open in Web Editor NEW
2.0 15.0 14.0 175 KB

The CircleCI Elixir Docker Convenience Image.

Home Page: https://circleci.com/developer/images/image/cimg/elixir

License: MIT License

Dockerfile 95.56% Shell 4.44%
docker circleci cimg circleci-cimg convenience-image

cimg-elixir's Introduction

CircleCI Logo Docker Logo Elixir Logo

CircleCI Convenience Images => Elixir

A Continous Integration focused Elixir Docker image built to run on CircleCI

CircleCI Build Status Software License Docker Pulls CircleCI Community Repository

This image is designed to supercede the legacy CircleCI Elixir image, circleci/elixir.

cimg/elixir is a Docker image created by CircleCI with continuous integration builds in mind. Each tag contains a complete Elixir installation for use with mix and hex.

Support Policy

The CircleCI Docker Convenience Image support policy can be found on the CircleCI docs site. This policy outlines the release, update, and deprecation policy for CircleCI Docker Convenience Images.

Table of Contents

Getting Started

This image can be used with the CircleCI docker executor. For example:

jobs:
  build:
    docker:
      - image: cimg/elixir:1.9
    steps:
      - checkout
      - run: mix --version
      - run: mix deps.get
      - run: mix test

In the above example, the CircleCI Elixir Docker image is used as the primary container. More specifically, the tag 1.9 is used meaning the version of elixir will be v1.9. You can now use mix within the steps for this job.

How This Image Works

This image contains both Elixir as well as a supported version of Erlang.

Parent Tags and Parent Slugs

Parent Tags introduce the ability to choose a specific version to include in the tag. In conjunction with the Parent Slug, Elixir now supports choosing which Erlang version to use and looks like: parentSlug-parentTag, which would translate to erlang-22.3

Variants

Variant images typically contain the same base software, but with a few additional modifications.

Node.js

The Node.js variant is the same Elixir image but with Node.js also installed. The Node.js variant can be used by appending -node to the end of an existing cimg/elixir tag.

jobs:
  build:
    docker:
      - image: cimg/elixir:1.11-node
    steps:
      - checkout
      - run: mix --version
      - run: node --version

Browsers

The browsers variant is the same Elixir image but with Node.js, Selenium, and browser dependencies pre-installed via apt. The browsers variant can be used by appending -browsers to the end of an existing cimg/elixir tag. The browsers variant is designed to work in conjunction with the CircleCI Browser Tools orb. You can use the orb to install a version of Google Chrome and/or Firefox into your build. The image contains all of the supporting tools needed to use both the browser and its driver.

orbs:
  browser-tools: circleci/[email protected]
jobs:
  build:
    docker:
      - image: cimg/elixir:1.11-browsers
    steps:
      - browser-tools/install-browser-tools
      - checkout
      - run: |
          mix --version
          node --version
          java --version
          google-chrome --version

Tagging Scheme

This image has the following tagging scheme:

cimg/elixir:<elixir-version>[-erlang-version][-variant]

<elixir-version> - The version of Elixir to use. This can be a full SemVer point release (such as 1.10.2) or just the minor release (such as 1.10). If you use the minor release tag, it will automatically point to future patch updates as they are released by the Elixir project. For example, the tag 1.10 points to elixir 1.10.2 now, but when the next release comes out, it will point to 1.10.3.

<erlang-version> - This specifies the erlang version to use in accordance with the compatibility chart. Note: the default image tag: cimg/elixir:<elixir-version>[-variant] will utilize the latest version e.g 24.3

[-variant] - Variant tags, if available, can optionally be used. For example, the Node.js variant can be used like this: cimg/elixir:1.10.1-node.

Development

Images can be built and run locally with this repository. This has the following requirements:

  • local machine of Linux (Ubuntu tested) or macOS
  • modern version of Bash (v4+)
  • modern version of Docker Engine (v19.03+)

Cloning For Community Users (no write access to this repository)

Fork this repository on GitHub. When you get your clone URL, you'll want to add --recurse-submodules to the clone command in order to populate the Git submodule contained in this repo. It would look something like this:

git clone --recurse-submodules <my-clone-url>

If you missed this step and already cloned, you can just run git submodule update --recursive to populate the submodule. Then you can optionally add this repo as an upstream to your own:

git remote add upstream https://github.com/CircleCI-Public/cimg-elixir.git

Cloning For Maintainers ( you have write access to this repository)

Clone the project with the following command so that you populate the submodule:

git clone --recurse-submodules [email protected]:CircleCI-Public/cimg-elixir.git

Generating Dockerfiles

Dockerfiles can be generated for a specific elixir version using the gen-dockerfiles.sh script. For example, to generate the Dockerfile for elixir v1.10.2, you would run the following from the root of the repo:

./shared/gen-dockerfiles.sh 1.10.2

The generated Dockerfile will be located at ./1.10/<parent-tag>/Dockefile in addition to their corresponding variants located at ./1.10/<parent-tag>/<variant>/Dockefile

To build this image locally and try it out, you can run the following (assuming a 23.3 erlang version):

cd 1.10
docker build -t test/elixir:1.10.2-erlang-23.3 .
docker run -it test/elixir:1.10.2-erlang-23.3 bash

If using the default version (latest), you could run either of the following:

docker build -t test/elixir:1.10.2 .
docker run -it test/elixir:1.10.2 bash

docker build -t test/elixir:1.10.2-erlang-24.3 .
docker run -it test/elixir:1.10.2-erlang-24.3 bash

Building the Dockerfiles

To build the Docker images locally as this repository does, you'll want to run the build-images.sh script:

./build-images.sh

This would need to be run after generating the Dockerfiles first. When releasing proper images for CircleCI, this script is run from a CircleCI pipeline and not locally.

Submitting a Pull Request

Ensure all the changes to the versioned Dockerfiles and the build-images.sh have been reverted, leaving only the Dockerfile.template as the modified file. These will have been modified while testing with the sections above. The specific versions will be included when the images are released.

Publishing Official Images (for Maintainers only)

The individual scripts (above) can be used to create the correct files for an image, and then added to a new git branch, committed, etc. A release script is included to make this process easier. To make a proper release for this image, let's use the fake elixir version of v99.9.9, you would run the following from the repo root:

./shared/release.sh 99.9.9

This will automatically create a new Git branch, generate the Dockerfile(s), stage the changes, commit them, and push them to GitHub. The commit message will end with the string [release]. This string is used by CircleCI to know when to push images to Docker Hub. All that would need to be done after that is:

  • wait for build to pass on CircleCI
  • review the PR
  • merge the PR

The master branch build will then publish a release.

Incorporating Changes

How changes are incorporated into this image depends on where they come from.

build scripts - Changes within the ./shared submodule happen in its own repository. For those changes to affect this image, the submodule needs to be updated. Typically like this:

cd shared
git pull
cd ..
git add shared
git commit -m "Updating submodule for foo."

parent image - By design, when changes happen to a parent image, they don't appear in existing elixir images. This is to aid in "determinism" and prevent breaking customer builds. New elixir images will automatically pick up the changes.

If you really want to publish changes from a parent image into the elixir image, you have to build a specific image version as if it was a new image. This will create a new Dockerfile and once published, a new image.

elixir specific changes - Editing the Dockerfile.template file in this repo is how to modify the elixir image specifically. Don't forget that to see any of these changes locally, the gen-dockerfiles.sh script will need to be run again (see above).

Contributing

We encourage issues and pull requests against this repository.

Please check out our contributing guide which outlines best practices for contributions and what you can expect from the images team at CircleCI.

Additional Resources

CircleCI Docs - The official CircleCI Documentation website. CircleCI Configuration Reference - From CircleCI Docs, the configuration reference page is one of the most useful pages we have. It will list all of the keys and values supported in .circleci/config.yml. Docker Docs - For simple projects this won't be needed but if you want to dive deeper into learning Docker, this is a great resource.

License

This repository is licensed under the MIT license. The license can be found here.

cimg-elixir's People

Contributors

bytesguy avatar ch4s3 avatar cpe-image-bot avatar dsayling avatar felicianotech avatar gesta avatar imetallica avatar jalexchen avatar jeremyowensboggs avatar joshhsoj1902 avatar ryanbourdais avatar samhutchings avatar sgerrand avatar vitortrin avatar

Stargazers

 avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

cimg-elixir's Issues

Erlang OTP 24.0.3 Isn't Available Yet

24.0.3 contains bug fixes needed by Elixir users on CircleCI. We will need to respin the Elixir v1.12.0 image with an updated version of Elixir but this cannot be done yet due to this upstream version not being available by Erlang Solutions. This Issue is to track this problem. I will ping Erlang Solutions as well.

Add arm64 support

At the moment it is not possible to convert this image to multi-arch builds as the Erlang packages from the source we are using are not provided for arm64

We may need to switch to something compatible like https://github.com/asdf-vm/asdf to manage the Erlang and elixir versions in the image, or possibly build from source

Include Latest Version of Browsers in Image

Would it be possible to include the latest stable versions of the browsers supported by the browser-tools-orb in the -browsers images? This would allow us to avoid having to install them with each run when we are needing to run tests with Selenium. Additionally, it would solve the problem that many of us are currently facing with the Chrome install and Google apparently blocking requests. CircleCI-Public/browser-tools-orb#34

Lastly, there is a typo in the README.md should be -browsers not -browser.

Allow for other Erlang versions

These images do not allow for a different elixir - erlang combinations, which are crucial, as the versions we use in prod must match with the versions used to build the application. Consider the solution used by hexpm/elixir, that builds a lot of elixir-erlang images

Feature Request: Erlang 26.1 images

Please could we get Elixir images based on Erlang 26.1? It's been out since late September: https://www.erlang.org/news/165

Related: is it possible to tighten up the gaps between release and these images coming out? I know some of the packaging has changed, so maybe some automation improvements are needed? ๐Ÿ™

Replace Elixir logo circle

It doesn't look good and is currently the only PNG logo circle we have. Ideally we need to replace it with an SVG version or at least a better quality PNG.

Feature Request: Publish Elixir v1.15.6

For our official CircleCI Docker Convenience Image support policy, please see CircleCI docs.

This policy outlines the release, update, and deprecation policy for CircleCI Docker Convenience Images.


Describe the Feature Request

Publishing the v1.15.6 elixir images

Is your feature request related to a particular problem?

Elixir v1.15.6 fixes running dialyzer on umbrella projects and it's also the latest patch version of 1.15

How will this feature request benefit CircleCI jobs using this image?
For example, will it help speed up jobs significantly by not having to install a commonly used package every run?

In order for us to add a tool within the image, it has to be something that is maintained and useful to a majority of CircleCI users. Every tool added makes the image larger and slower for all users, so any new additions need to be carefully thought out.

Describe the solution you would like to see
A clear and concise description of what you would like to see for this feature request. For example "I like like to see xyz package installed by default in the image".

Describe alternatives you have considered
A clear and concise description of any alternative solutions you have considered, such as different packages or workarounds.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.