Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/cd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ jobs:
- name: Push Docker Image 🚀
run: |
echo "Pushing Docker image: $IMAGE_TAG"
docker compose --profile prod push
docker compose --profile prod:push push
if [ $? -eq 0 ]; then
echo "✅ Docker image $IMAGE_TAG pushed successfully!"
else
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ WORKDIR /app
COPY --from=builder /app/node_modules ./node_modules
COPY --from=builder /app/package*.json ./
# COPY --from=builder /app/dist ./dist
COPY --from=builder /app/temp ./temp
# COPY --from=builder /app/temp ./temp
COPY --from=builder /app/views ./views
COPY --from=builder /app/*.js ./

Expand Down
1 change: 1 addition & 0 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
services:
app:
profiles:
- prod:push
- prod
- dev
build:
Expand Down
Loading