diff --git a/Dockerfile b/Dockerfile index 8fa9544..2873715 100644 --- a/Dockerfile +++ b/Dockerfile @@ -46,8 +46,6 @@ ENV NEXT_TELEMETRY_DISABLED 1 RUN addgroup --system --gid 1001 nodejs RUN adduser --system --uid 1001 nextjs -COPY --from=builder /app/public ./public - # Copy environment variables COPY --from=builder /app/.env.local ./.env.local diff --git a/README.md b/README.md index 5f05dd5..57f99c8 100644 --- a/README.md +++ b/README.md @@ -10,8 +10,6 @@ Simple dashboard for bitcoind. Designed to work with bitcoind running in another cp .env.local.sample .env.local vim .env.local -mkdir public - # Setup docker-compose cp docker-compose-dev-template.yml docker-compose-dev.yml #For development cp docker-compose-template.yml docker-compose.yml # For production diff --git a/tsconfig.json b/tsconfig.json index 23ba4fd..cf707a1 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -14,6 +14,7 @@ "isolatedModules": true, "jsx": "preserve", "incremental": true, + "noImplicitAny": false, "plugins": [ { "name": "next"