2017-12-08 11:28:27 -05:00
---
layout: guides
2017-12-11 17:31:44 -05:00
page_title: Build Images in CI/CD
2020-03-24 18:36:27 -04:00
sidebar_title: 'Build Images in CI/CD'
2017-12-08 11:28:27 -05:00
---
2017-12-11 17:31:44 -05:00
# Build Images in CI/CD
2017-12-08 13:31:00 -05:00
2017-12-11 18:10:37 -05:00
The following guides from our partners show how to use their services to build
images with Packer.
2017-12-08 13:31:00 -05:00
2017-12-12 01:04:54 -05:00
- [How to Build Immutable Infrastructure with Packer and CircleCI Workflows](https://circleci.com/blog/how-to-build-immutable-infrastructure-with-packer-and-circleci-workflows/)
2017-12-08 16:46:51 -05:00
- [Using Packer and Ansible to Build Immutable Infrastructure in CodeShip](https://blog.codeship.com/packer-ansible/)
2017-12-08 13:31:00 -05:00
2020-03-31 17:17:24 -04:00
The majority of the [Packer Builders](/docs/builders) can run in
2017-12-11 18:10:37 -05:00
a container or VM, a common model used by most CI/CD services. However, the
[QEMU builder](/docs/builders/qemu.html) for
[KVM](https://www.linux-kvm.org/page/Main_Page) and
[Xen](https://www.xenproject.org/) virtual machine images, [VirtualBox
builder](/docs/builders/virtualbox.html) for OVA or OVF virtual machines and
2020-03-02 04:10:51 -05:00
[VMware builder](/docs/builders/vmware.html) for use with VMware products
2017-12-11 18:10:37 -05:00
require running on a bare-metal machine.
2017-12-08 13:31:00 -05:00
2017-12-11 18:10:37 -05:00
The [Building a VirtualBox Image with Packer in
2017-12-12 12:10:38 -05:00
TeamCity](/guides/packer-on-cicd/build-virtualbox-image.html) guide shows
2017-12-11 18:10:37 -05:00
how to create a VirtualBox image using TeamCity's support for running scripts
on bare-metal machines.