We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5f10aa0 commit d4018faCopy full SHA for d4018fa
.dockerignore
@@ -0,0 +1,5 @@
1
+.git
2
+*.json
3
+*Dockerfile*
4
+node_modules
5
+.env
Dockerfile
@@ -56,6 +56,8 @@ COPY --from=builder /app/public ./public
56
COPY --from=builder --chown=nextjs:nodejs /app/.next/standalone ./
57
COPY --from=builder --chown=nextjs:nodejs /app/.next/static ./.next/static
58
59
+COPY scripts ./scripts
60
+
61
USER nextjs
62
63
EXPOSE 3000
docker-compose.yml
@@ -14,8 +14,6 @@ services:
14
15
ai-dev-app:
16
image: cornellappdev/ai-dev:${IMAGE_TAG}
17
- volumes:
18
- - ./firebase-service-account.json:/app/firebase-service-account.json
19
ports:
20
- "3000:3000"
21
env_file:
0 commit comments