We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e3a3974 + a295005 commit 843d0aaCopy full SHA for 843d0aa
.github/workflows/deploy.yml
@@ -16,10 +16,16 @@ jobs:
16
- name: Login to DockerHub (Optional)
17
run: echo "Skipping DockerHub login since we're saving as tar."
18
19
- - name: Docker Build
+ # - name: Docker Build
20
+ # run: |
21
+ # docker build -t nextjs-app .
22
+ # docker save nextjs-app -o nextjs-app.tar
23
+
24
+ - name: Check .next after build
25
run: |
26
docker build -t nextjs-app .
- docker save nextjs-app -o nextjs-app.tar
27
+ docker run --rm --entrypoint "" nextjs-app ls -al /app/.next || echo ".next not found"
28
29
30
- name: Package artifacts (tar + appspec.yml + scripts)
31
0 commit comments