Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
romilbhardwaj committed Oct 11, 2022
1 parent e222e10 commit e8086b2
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions examples/docker/echo_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,8 @@
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" ',
run = ('docker run --rm --volume="/inputs:/inputs:ro" '
'--volume="/outputs:/outputs:rw" '
'echo:v0 /inputs/README.md /outputs/output.txt')

echo_app = sky.Task(
Expand Down

0 comments on commit e8086b2

Please sign in to comment.