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

Fix dockerfilePath in annotated-skaffold.yaml #467

Merged
merged 1 commit into from
Apr 30, 2018
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
5 changes: 4 additions & 1 deletion examples/annotated-skaffold.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,12 @@ build:
# The name of the image we're going to build, the full reference to the built
# image will be available later in the the deploy section
- imageName: gcr.io/k8s-skaffold/skaffold-example
# dockerfilePath is the path to the Dockerfile. Defaults to "Dockerfile"
# workspace is the path to your dockerfile context. Defaults to ".""
workspace: ../examples/getting-started
# docker: {} # Use this for custom Docker configuration
docker: {}
# Dockerfile location relative to workspace. Defaults to "Dockerfile"
# dockerfilePath: Dockerfile

# This next section is where you'll put your specific builder configuration.
# Here, we're using a local builder, which simply builds using the host docker
Expand Down