8 lines
244 B
Bash
8 lines
244 B
Bash
|
#!/bin/bash
|
||
|
# run docker container locally (for testing)
|
||
|
# assumes you're running in the backend/ dir of the project
|
||
|
|
||
|
docker run -i --entrypoint /backend/entrypoint.sh -v $PWD:/backend powertools_backend
|
||
|
mkdir -p ../bin
|
||
|
cp ./out/backend ../bin
|