Skip to content

Commit fe7a502

Browse files
Update
1 parent 2e15503 commit fe7a502

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
# Docker Exec Image: Python 3
1+
# Docker Exec Image: s
22

3-
A Dockerfile describing an container capable of executing Python 3 source files.
3+
A Dockerfile describing an container capable of executing s source files.
44

55
# Build
66

77
```sh
88
git clone https://github.com/docker-exec/python.git
9-
docker build -t dexec/python .
9+
docker build -t dexec/lang-python .
1010
```
1111

1212
# Usage
@@ -16,7 +16,7 @@ In a directory containing a script e.g. foo.py, run:
1616
```sh
1717
docker run -t --rm \
1818
-v $(pwd -P)/foo.py:/tmp/dexec/build/foo.py \
19-
dexec/python foo.py
19+
dexec/lang-python foo.py
2020
```
2121

2222
## Passing arguments to the script
@@ -34,7 +34,7 @@ Each argument passed must be prefixed in this way, e.g.
3434
```sh
3535
docker run -t --rm \
3636
-v $(pwd -P)/foo.py:/tmp/dexec/build/foo.py \
37-
dexec/python foo.py \
37+
dexec/lang-python foo.py \
3838
--arg='hello world' \
3939
--arg=foo \
4040
--arg=bar

0 commit comments

Comments
 (0)