This repository has been archived on 2026-04-25. You can view files and clone it, but cannot push or open issues or pull requests.
FlippyPass/scripts/docker.sh

9 lines
206 B
Bash
Raw Normal View History

2024-08-09 22:44:21 -05:00
clear
2024-08-23 11:29:53 -05:00
echo "Building: Builder Image"
2024-08-09 22:44:21 -05:00
docker build . \
-t flipper-dev \
2024-08-23 11:29:53 -05:00
-f docker/builder/Dockerfile
echo "Building: UI image"
docker build . \
-t ui-builder \
-f docker/ui-builder/Dockerfile