Skip to content

Commit

Permalink
Run prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
davidmfinol committed Jul 15, 2023
1 parent dc7721c commit d38fd90
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions docs/08-docker/03-customize-docker-images.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -113,9 +113,11 @@ For more information on how to publish to docker hub, you may refer to

## Example : Include Blender

To include blender in the image used to build your unity project, you can define a custom Dockerfile based on unityci/editor and install blender on top of it.
To include blender in the image used to build your unity project, you can define a custom Dockerfile
based on unityci/editor and install blender on top of it.

### Dockerfile

```dockerfile
ARG GAMECI_IMAGE = unityci/editor:2021.3.1f1-windows-mono-1.0.1
FROM $GAMECI_IMAGE
Expand All @@ -134,6 +136,8 @@ RUN apt-get update && \
ENV PATH="$PATH:/blender-$BLENDER_FULL_VERSION-linux-x64"

```

### Usage
You can build this image and upload it to your own Dockedhub registry to reference it in your Unity pipeline afterward.

You can build this image and upload it to your own Dockedhub registry to reference it in your Unity
pipeline afterward.

0 comments on commit d38fd90

Please sign in to comment.