Skip to content

Commit

Permalink
parenthesis
Browse files Browse the repository at this point in the history
  • Loading branch information
romilbhardwaj committed Oct 11, 2022
1 parent 7af1a6d commit 6793c9b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions examples/docker/echo_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@
setup = 'docker build -t echo:v0 /echo_app'

# The command to run - runs the container and mounts volumes
run = 'docker run --rm ' \
'--volume="/inputs:/inputs:ro" ' \
'--volume="/outputs:/outputs:rw" ' \
'echo:v0 /inputs/README.md /outputs/output.txt'
run = ('docker run --rm ',
'--volume="/inputs:/inputs:ro" ',
'--volume="/outputs:/outputs:rw" ',
'echo:v0 /inputs/README.md /outputs/output.txt')

echo_app = sky.Task(
setup=setup,
Expand Down

0 comments on commit 6793c9b

Please sign in to comment.