Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

remove space in arg assignment (docker example) #403

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/08-docker/03-customize-docker-images.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ 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
ARG GAMECI_IMAGE=unityci/editor:2021.3.1f1-windows-mono-1.0.1
FROM $GAMECI_IMAGE

ARG BLENDER_SHORT_VERSION=3.4
Expand Down
Loading