-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #228 from gitroomhq/ci-actions-containers-tags
ci: Container for dev had wrong name, and a few other fixes
- Loading branch information
Showing
5 changed files
with
20 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,13 @@ | ||
# We want the docker builds to be clean, and as fast as possible. Don't send | ||
# any half-built stuff in the build context as a pre-caution (also saves copying | ||
# 180k files in node_modules that isn't used!). | ||
node_modules | ||
**/node_modules | ||
dist | ||
.nx | ||
.devcontainer | ||
.git | ||
*.md | ||
**/.git | ||
**/dist | ||
**/*.md | ||
**/LICENSE | ||
**/npm-debug.log | ||
**/*.vscode |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -42,3 +42,7 @@ Thumbs.db | |
|
||
# Next.js | ||
.next | ||
|
||
# Vim files | ||
**/*.swp | ||
**/*.swo |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
#!/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 . |