7 lines
124 B
Bash
Executable File
7 lines
124 B
Bash
Executable File
#!/bin/sh
|
|
|
|
SOURCE_DIR=$(realpath $(dirname "${0}"))/python2
|
|
|
|
# Build Docker container
|
|
docker build -t python2 ${SOURCE_DIR}
|