Files
code-server/deploy-k8s/extras/new-image.sh
2021-11-16 23:19:38 -06:00

10 lines
204 B
Bash
Executable File

#!/bin/sh
# This creates a new image folder and opens it in
# VS Code, if you have it installed
cp -r images/frontend images/new
if command -v code &> /dev/null; then
code images/new/Dockerfile
fi