Squashed import of upstream postiz-app at gitroomhq/postiz-app@826d07d. Full upstream history: https://github.com/gitroomhq/postiz-app
8 lines
219 B
Bash
Executable File
8 lines
219 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -o xtrace
|
|
|
|
docker rmi localhost/postiz || true
|
|
docker build --target dist -t localhost/postiz -f Dockerfile.dev .
|
|
docker build --target devcontainer -t localhost/postiz-devcontainer -f Dockerfile.dev .
|